12 lines
138 B
JavaScript
Executable File
12 lines
138 B
JavaScript
Executable File
define(['jquery','utils'],function ($,utils) {
|
|
function about() {
|
|
|
|
}
|
|
|
|
about.prototype = {
|
|
init () {
|
|
}
|
|
};
|
|
|
|
return new about();
|
|
}); |