13 lines
163 B
JavaScript
13 lines
163 B
JavaScript
define(['jquery','utils'],function ($,utils) {
|
|
function test() {
|
|
|
|
}
|
|
|
|
test.prototype = {
|
|
init () {
|
|
}
|
|
};
|
|
|
|
return new test();
|
|
});
|