This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var core_o; | |
(function(){ | |
//"use strict"; | |
var log = function(msg){console.log(msg);}; | |
var extendFunctions = []; | |
function extendFunction(extendFunction, name, after){ | |
extendFunctions.push({name:name, after:after, foo:extendFunction}); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
//"use strict"; | |
function Contruct(trs){} | |
core_o.extendModule(Contruct, "name", ["dependency.1", "dependency.2"]); | |
}()); |
NewerOlder