aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/rootScope.js
AgeCommit message (Collapse)Author
2013-01-17docs(rootScope): correct code examplesMatthew Browne
2012-11-30fix(Scope): ensure that a scope is destroyed only onceIgor Minar
Due to bd524fc4 calling $destroy() on a scope mupltiple times cases NPE. Closes #1627
2012-11-25fix(Scope): allow removing a listener during eventVojta Jina
2012-11-14fix($rootScope): workaround for Chrome's memleakIgor Minar
Under certain circumstances chrome fails to GC scopes because of buggy optimizations and caching. Nulling out references to (not from!) other scopes helps Chrome to realize that this object should be GC-ed. This is really just a workaround as the real problem needs to be fixed in Chrome. See discusstion at: https://github.com/angular/angular.js/issues/1313#issuecomment-10378451 And chrome bug at: https://code.google.com/p/v8/issues/detail?id=2073 Closes #1313
2012-09-11fix($evalAsync): have only one global async queueMisko Hevery
Having one async queue per scope complicates the matters when users wish to do partial scope updates, since many services put events on the rootScope. By having single queue the programing model is simplified.
2012-09-11docs($rootScope): fix iteration limit described by $watch, it's actually 10 ↵Daniel Luz
as of now
2012-09-11docs($rootScope): fix typos and minor wording tweaks on $watchDaniel Luz
2012-09-11docs($rootScope): fix quoting on expressionDaniel Luz
2012-09-11docs($rootScope): standardize on present, third-person actions for descriptionsDaniel Luz
2012-09-11docs($rootScope): backquote attribute types too on $onDaniel Luz
2012-09-11docs($rootScope): fix typos on $newDaniel Luz
2012-09-11docs($rootScope): fix typo on $evalDaniel Luz
2012-09-11docs($rootScope): fix typos on $watchDaniel Luz
2012-08-12docs: fix broken links to $compileProvider.directive()Vojta Jina
2012-08-10docs($rootScope): fix $on listener signature docunirgy
Added args in $on() listener syntax declaration
2012-06-12docs(*): simplify doc urlsIgor Minar
we now have two types of namespaces: - true namespace: angular.* - used for all global apis - virtual namespace: ng.*, ngMock.*, ... - used for all DI modules the virual namespaces have services under the second namespace level (e.g. ng.) and filters and directives prefixed with filter: and directive: respectively (e.g. ng.filter:orderBy, ng.directive:ngRepeat) this simplifies urls and makes them a lot shorter while still avoiding name collisions
2012-06-02doc(ngdoc): clean up doc generation and add missing documentation linksMisko Hevery
2012-06-02docs(scope): rewriteMisko Hevery
2012-05-23fix($rootScope): TTL exception does not clear $$phaseMisko Hevery
When $digest() throws infinite digest exception it does not properly clear the $phase leaving the scope in an inconsistent state. Closes #979
2012-05-17feat(scope): add event.preventDefault() and event.defaultPreventedVojta Jina
2012-05-17refactor(scope.$emit): rename event.cancel() to event.stopPropagation()Vojta Jina
Breaks event.cancel() is event.stopPropagation()
2012-05-08doc($rootScope): fix $digest exampleIgor Minar
2012-04-10chore(*): remove dead code and fix code style issuesIgor Minar
2012-04-09fix(docs): change all directive references to use the normalized namesIgor Minar
2012-03-28chore(module): move files around in preparation for more modulesMisko Hevery