-
-
Save ded/a4e99e5e4b8297e3c341 to your computer and use it in GitHub Desktop.
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
| <script src="../vendor/lab2.min.js"></script> | |
| <script type="text/javascript"> | |
| var start = (+new Date); | |
| // the $scriptjs way... | |
| $script(['a.js', 'b.js', 'c.js'], function () { | |
| // done | |
| }) | |
| $LAB | |
| // load a bunch of libraries | |
| .script('../vendor/yui-utilities.js') | |
| .script('../vendor/jquery.js') | |
| .script('../vendor/mootools.js').wait(function () { | |
| // benchmark time! | |
| document.getElementById('total').innerHTML = (+new Date) - start; | |
| YAHOO.util.Dom.get('yui').innerHTML = '✓'; | |
| $('#jquery').html('✓'); | |
| document.id('mootools').innerHTML = '✓'; | |
| }) | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment