aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-07-18fix(docs): Grammatical fixbrettcannon
2012-07-18fix(docs): Fixed some awkward wordingbrettcannon
2012-07-18fix(docs): Tweak formatting and wording of a listbrettcannon
2012-07-18fix(docs): Don't want the present participle of "is"brettcannon
2012-07-18fix(docs): Adjectve accidentally made into an adverbbrettcannon
2012-07-18fix(docs): Minor grammatical fixbrettcannon
2012-07-16fix(docs): Fixed typo: changed `ngRepeate` to `ngRepeat`.Rishabh Rao
2012-07-16fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵Jamie Krug
bootstrap page.
2012-07-16fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵Jamie Krug
compiler page.
2012-07-16fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵Jamie Krug
overview page.
2012-07-16fix(docs): correct typoKevin Old
2012-07-02docs(readme): add blurb about AngularJS to README.mdIgor Minar
2012-07-02fix(docs): correctly generate sitemapIgor Minar
2012-07-02fix(docs): fix broken ng-docs specsIgor Minar
2012-06-25chore(changelog): fix typos in rc11 changelogVojta Jina
2012-06-25chore(release): starting the 1.0.2 debilitating-awesomeness iterationIgor Minar
2012-06-25chore(release): cutting the 1.0.1 thorium-shielding releasev1.0.1Igor Minar
2012-06-25docs(changelog): release notes for 1.0.1 thorium-shieldingIgor Minar
2012-06-22fix(browser): prevent ie from getting into redirect loopMisko Hevery
Closes #1075 Closes #1079 Closes #1085
2012-06-21chore(release): starting the 1.0.1 iterationIgor Minar
2012-06-21chore(logos): fix shield logo exportsIgor Minar
the previous version is clipped at the top
2012-06-21fix(logo): center A in the shieldIgor Minar
2012-06-20fix($location): url rewriting if element was removedVojta Jina
When user clicks a link, $location needs to intercept this event. The <a> doesn't have to be target element of the DOM event, so it needs to traverse the DOM, to find first <a> parent. If the target element was removed from DOM, during the same event, it would throw an exception. This fixes the issue. Closes #1058
2012-06-15fix(doc) firefox icon renderingMisko Hevery
2012-06-14chore(release): cutting the 1.0 temporal-domination releasev1.0.0Igor Minar
2012-06-14docs(changelog): release notes for 1.0 temporal-domination releaseIgor Minar
2012-06-14fix($location): fix URL interception in hash-bang modeMisko Hevery
Closes #1051
2012-06-13fix($location): correctly parse link urls in hashbang mode with prefixMisko Hevery
This is a second fix for a regression that was introduced by 92a2e180. The fix addresses scenarios when the $location service is configured with a hash prefix. Closes #1037
2012-06-13chore(release): starting the 1.0 temporal-domination iterationIgor Minar
2012-06-12chore(release): cutting the 1.0.0rc12 regression-extermination releasev1.0.0rc12Igor Minar
2012-06-12docs(changelog): release notes for 1.0.0rc12 regression-exterminationIgor Minar
2012-06-12docs($browser): hide $browser docs - it's a private serviceIgor Minar
2012-06-12fix($defer): remove deprecated $defer serviceIgor Minar
2012-06-12fix($location): correctly parse link urls in hashbang modeMisko Hevery
This is a fix for a regression that was introduced by 92a2e180 Closes #1037
2012-06-12fix($location): throw Errors not StringsIgor Minar
2012-06-12fix(docs): migrate from $defer to $timeoutIgor Minar
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-11chore(logos): adding AngularJS and shield logosIgor Minar
2012-06-11chore(release): start 1.0.0rc12 regression-exterminator releaseIgor Minar
quick release to fix $location regression
2012-06-11chore(release): cutting the 1.0.0rc promise-resolution releasev1.0.0rc11Igor Minar
2012-06-11docs(changelog): release notes for 1.0.0rc11 promise-resolutionIgor Minar
2012-06-10test($location): fix tests borked during event renamingIgor Minar
2012-06-10docs(*): fix various outdated docs and examplesIgor Minar
Closes #1030
2012-06-09docs($location): clarify the two-way data-binding noteIgor Minar
Closes #1030
2012-06-08fix($compile): correctly merge class attr for replace directivesMax Martinsson
Merging of interpolated class attribute from directive template with replace:true works Closes #1006
2012-06-08fix($http): add utf-8 to default Content-Type header (post/put)Vojta Jina
This fixes special characters issue with MongoLab. https://groups.google.com/d/topic/angular/1T6h7bfZ7Rs/discussion
2012-06-08feat($compile): simplify isolate scope bindingsMisko Hevery
Changed the isolate scope binding options to: - @attr - attribute binding (including interpolation) - =model - by-directional model binding - &expr - expression execution binding This change simplifies the terminology as well as number of choices available to the developer. It also supports local name aliasing from the parent. BREAKING CHANGE: isolate scope bindings definition has changed and the inject option for the directive controller injection was removed. To migrate the code follow the example below: Before: scope: { myAttr: 'attribute', myBind: 'bind', myExpression: 'expression', myEval: 'evaluate', myAccessor: 'accessor' } After: scope: { myAttr: '@', myBind: '@', myExpression: '&', // myEval - usually not useful, but in cases where the expression is assignable, you can use '=' myAccessor: '=' // in directive's template change myAccessor() to myAccessor } The removed `inject` wasn't generaly useful for directives so there should be no code using it.
2012-06-08fix(startingTag): make tag name always lowercaseIgor Minar
some browsers (IE) always provide the nodeName as upper-case
2012-06-08refactor($compile): always call attr.$observeMisko Hevery
attr.$observe used to call function only if there was interpolation on that attribute. We now call the observation function all the time but we only save the reference to it if interpolation is present.
2012-06-08chore($compile): clean up compiler testsMisko Hevery