aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular.suffix
AgeCommit message (Collapse)Author
2014-03-18fix(angular.bootstrap): only allow angular to load onceSiddique Hameed
This is hard to test as a unit-test, since it involves the actual loading of angular, but it turns out that it is easy to test using a protractor e2e test. Closes #5863 Closes #5587
2012-03-23fix(init): use jQuery#ready for init if availableIgor Minar
Closes #818
2012-03-19fix(compiler): allow transclusion of root elementsMisko Hevery
Fixed an issue where a directive that uses transclusion (such as ngRepeat) failed to link if it was declared on the root element of the compilation tree. (For example ngView or ngInclude including template where ngRepeat was the top most element).
2012-01-10feat(module): new module loaderMisko Hevery
2011-11-14style(angularPublic): move public export definition to AnuglarPublic.jsMisko Hevery
2011-10-26feat(bootstrap): drop angular.js file name restrictions for autobindIgor Minar
The last script element in the dom is always us if the script that contains angular is loaded synchronously. For async loading manual bootstrap needs to be performed. Close #621
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