UNPKG

curl-amd

Version:

curl.js is small, fast, extensible module loader that handles AMD, CommonJS Modules/1.1, CSS, HTML/text, and legacy scripts.

62 lines (51 loc) 1.41 kB
<!DOCTYPE HTML> <html> <head> <title>curl debug module test file</title> <script> curl = { debug: true, paths: { curl: '../src/curl/' } }; // mock console for IE if (!window.console) console = {}; if (!('log' in console)) { console._msg = []; console.log = function (msg) { var _msg = this._msg; _msg.push([].join.call(arguments, ' ')); clearTimeout(this._timeout); this._timeout = setTimeout(function () { alert(_msg.join('\n')); }, 100); }; } </script> <script src="../src/curl.js" type="text/javascript"></script> <script type="text/javascript"> var start = new Date(); curl(['curl/debug']).next( [ 'stuff/three', 'css!stuff/base', 'text!stuff/template.html' ] ).then( function (three, link, template) { console.log('total time:', new Date() - start); if (document.body) { document.body.appendChild(document.createTextNode('A module with dependencies loaded successfully if 3 == ' + three + '.')); document.body.appendChild(document.createElement('br')); document.body.appendChild(document.createTextNode('There should be a success message below if the text file loaded:')); document.body.appendChild(document.createElement('div')).innerHTML = template; } } ); </script> </head> <body> <p>This text should all be the same <span style="color: #2faced;">color</span> if the css file loaded.</p> </body> </html>