controljs
controljs copied to clipboard
Automatically exported from code.google.com/p/controljs
``` There was a suggestion to add a custom SCRIPT attribute to tell ControlJS *NOT* to delay execution of a particular script - something like "data-cjsnodelay=true". ``` Original issue reported...
``` By default ControlJS waits until window onload before starting to execute scripts, but some people might want to execute scripts as soon as they arrive. (Or we could support...
``` We could extend this to load stylesheets async. If I have a big stylesheet that only contains styles for some later feature (eg, the "compose" UI for web email)...
``` I forgot about document.writeln. Override that, too. ``` Original issue reported on code.google.com by `[email protected]` on 16 Dec 2010 at 11:49
``` What steps will reproduce the problem? 1. Make a script with eval var Foo = { init: function() { eval("alert('test')"); } }; 2. Try to load it with control.js...