Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/platforms/browser/inline.js
diff options
context:
space:
mode:
Diffstat (limited to 'utils/platforms/browser/inline.js')
-rwxr-xr-xutils/platforms/browser/inline.js56
1 files changed, 0 insertions, 56 deletions
diff --git a/utils/platforms/browser/inline.js b/utils/platforms/browser/inline.js
deleted file mode 100755
index 16d8b11..0000000
--- a/utils/platforms/browser/inline.js
+++ /dev/null
@@ -1,56 +0,0 @@
-(function (ids, id, path) {
-
- var factories = {};
- var pending;
-
- var require = this.require = function (id, baseId) {
- // defer to require set later from the sandbox module
- require(id, baseId);
- };
-
- require.register = function (id, factory) {
- factories[id] = factory;
- if (!--pending)
- main();
- };
-
- var pending = ids.length;
- var head = document.getElementsByTagName('head')[0];
- for (var i = 0; i < pending; i++) {
- var script = document.createElement('script');
- script.src = path + ids[i] + '.js';
- head.appendChild(script);
- };
-
- function main() {
-
- var system = {};
- system.print = function () {
- if (typeof console != "undefined") {
- console.log(Array.prototype.join.call(arguments, ' '));
- }
- };
-
- var loader = {};
- loader.reload = function (topId) {
- return factories[topId];
- };
- loader.load = function (topId) {
- return loader.reload(topId);
- };
-
- var sandbox = {};
- loader.load('sandbox')(
- null,
- sandbox,
- {},
- system,
- system.print
- );
- require = sandbox.Sandbox({loader: loader});
- loader.resolve = sandbox.resolve;
- require(id);
-
- }
-
-})