wise-web-client
Version:
Based on Spine MVC framework
16 lines (13 loc) • 392 B
JavaScript
var all = require("./all").all,
dollar = require("./dollar");
exports.loadDollar = function() {
Function.prototype.bind = function() {
var that = this,
args = Array.prototype.slice.apply(arguments),
scope = args.shift();
return function() {
return that.apply(scope, args.concat(Array.prototype.slice.apply(arguments)));
};
};
dollar.lang.load(all);
};