aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular.suffix
AgeCommit message (Collapse)Author
2011-10-11chore(formating): clean code to be function() {Misko Hevery
2011-03-11ng:autobind now optionally takes element idIgor Minar
so it is possible to easily compile just a part of a document. e.g.: <html> <head> <title>partially compiled doc</title> <script src="angular.js" ng:autobind="compileThis"></script> </head> <body> this part won't be compiled: {{1+2}} <div id="compileThis" ng:init="i=0" ng:click="i = i+1"> Click count: {{i}} </div> </body> </html>
2011-02-16allow jquery to be declared after angular in the script loading orderMisko Hevery
2011-01-10bootstrap angular on "document ready" instead of window.onloadIgor Minar
- use jqLite api to bootstrap angular - when jQuery is present DOMContentLoaded or hacks for IE are used - when jqLite is present DOMContentLoaded is used for modern browsers and IE9 and window.onload is used for other browsers. - test html for comparing DOMContentLoaded with window.onload Closes #224
2010-07-29fix broken build, fix #autobind and css loadingMisko Hevery
2010-04-07clean up, fixes for appMisko Hevery
2010-03-29tests broken, but bootstrap worksMisko Hevery
2010-01-09removed nglr namespaceMisko Hevery