aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-08-10docs($rootScope): fix $on listener signature docunirgy
Added args in $on() listener syntax declaration
2012-08-10test(jqLite): add missing test for $destroy eventIgor Minar
2012-08-10fix(form): prevent page reload when form destroyedIgor Minar
this fix ensures that we prevent the default action on form submission (full page reload) even in cases when the form is being destroyed as a result of the submit event handler (e.g. when route change is triggered). The fix is more complicated than I'd like it to be mainly because we need to ensure that we don't create circular references between js closures and dom elements via DOM event handlers that would then result in a memory leak. Also the differences between IE8, IE9 and normal browsers make testing this ugly. Closes #1238
2012-08-10test(form): fix broken preventDefault testIgor Minar
the original test relied on incorrect assumptions about how jasmine async tests work (when setTimeout is triggered) and how browser reloads a page (the sequence of events) and thus the test passes even when the default is not prevented. this change fixes the test by registering an extra submit event handler that checks if the default was prevented. if the default was not prevented, the test will fail and the page will be reloaded causing the test runner to panic.
2012-08-10refactor(formSpec): group preventDefault specs into a describeIgor Minar
2012-08-10docs(faq): update faq docsIgor Minar
2012-08-10docs(styles): fix the cog icon alignmentIgor Minar
2012-08-10chore(nodeserver): add font mime typeVojta Jina
2012-08-10docs(guide): hide scenario for directive exampleVojta Jina
scenario test for this example would be tricky, we need to teach the runner how to inject mocks first.
2012-08-10docs(design): fix iconsVojta Jina
Copy fontawesome during build
2012-08-10fix(docs): "in depth" -> "in-depth"brettcannon
2012-07-19docs(readme): improve blurb about AngularJS in README.mdIgor Minar
2012-07-19fix(docs): Capitalize Angular.brettcannon
2012-07-19fix(docs): Fix a spelling mistake by replacing the noun with "it"brettcannon
2012-07-19fix(docs): "were" -> "where"brettcannon
2012-07-19fix(docs): Capitalize "URL".brettcannon
2012-07-19fix(docs): Fixed defer to timeout change in timer directive exampleChris Dawson
2012-07-19fix(docs): Spelling errorsChris Dawson
2012-07-19fic(docs): Consistently use __bold__ for things that must be done when ↵brettcannon
moving the ng-controller declaration.
2012-07-19fix(docs): Tweak some grammar and add some links relating to DI.brettcannon
2012-07-19fix(docs): Capitalize "APIs"brettcannon
2012-07-19fix(docs): Capitalize "Angular".brettcannon
2012-07-19fix(docs): Capitalize Angular.brettcannon
2012-07-19fix(docs): Add a missing "the".brettcannon
2012-07-19fix(docs): ngRepeater isn't a thing, ngRepeat isbrettcannon
2012-07-19fix(docs): Remove a redundant "in".brettcannon
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