25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- // require js file
- // items to be called by their direct names
- // for handler functions
- // wn.require('index.cgi?cmd=startup')
-
- wn.require = function(items) {
- if(typeof items === "string") {
- items = [items];
- }
- var l = items.length;
-
- for(var i=0; i< l; i++) {
- var src = items[i];
- if(!(src in wn.assets.executed_)) {
- // check if available in localstorage
- wn.assets.execute(src);
- }
- }
- }
|