| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-21 | docs(input): fix example | Jérémy | |
| The input [number] error spans did not show on the example, as they were relying on an non-existing property (myForm.list.$error) vs the working property (myForm.input.$error) | |||
| 2013-07-21 | docs(ngController): remove obsolete mention of scope as `this` in controller | Vineet Kumar | |
| Controllers are now (since angular 1.0) instantiated as regular constructorsand the scope is injectable as $scope rather than being referenced as `this` in controller methods. | |||
| 2013-07-21 | docs($window): improve style and clarify wording | David Sanders | |
| 2013-07-18 | docs(jqLite): document "$destroy" event | Pete Bacon Darwin | |
| 2013-07-18 | chore(ngdocs): fix improve button overlap | Matias Niemelä | |
| 2013-07-17 | docs($templateCache): add examples of usage | Spencer | |
| 2013-07-17 | docs(dateFilter): fix typos | Bruno Coelho | |
| Fix closing parenthesis, quotes around string literal and remove trailing whitespace. Closes #3250 | |||
| 2013-07-16 | test(utils): Adds a missing test for snake_case | James deBoer | |
| 2013-07-15 | chore(gitignore): add libpeerconnection.log | Matias Niemelä | |
| Google chrome (when tested using karma) spits out a log file called libpeerconnection.log | |||
| 2013-07-15 | chore(ngdocs): remove autofocus for the filtering search | Matias Niemelä | |
| 2013-07-14 | docs(di): promote registering controllers on modules | sdesmond | |
| 2013-07-14 | style(ngMock): add missing whitespace | David | |
| 2013-07-13 | fix(angular.equals): add support for regular expressions | Ben Ripkens | |
| Regular expression objects didn't used to be considered to be equal when using 'angular.equals'. Dirty checking therefore failed to recognize a property modification. Closes #2685 Conflicts: test/AngularSpec.js | |||
| 2013-07-12 | feat(Angular.js): skip JSON.stringify for undefined | Greg Thornton | |
| Return early in `angular.toJson` if the object to be stringified is `undefined`. IE8 stringifies `undefined` to `'undefined'` whereas other browsers return `undefined`. This normalizes behavior and passes currently broken unit tests in IE8. | |||
| 2013-07-12 | fix(sanitize): match URI schemes case-insensitively | Pete Bacon Darwin | |
| According to RFC 3986 (http://tools.ietf.org/html/rfc3986#section-3.1) schemes such as http or mailto are case-insensitive. So links such as http://server/ and HTTP://server/ are valid and equivalent. Closes #3210 | |||
| 2013-07-11 | fix(ngSubmit): expose $event to ngSubmit callback | Wesley Cho | |
| 2013-07-11 | revert: feat(ngDocs): add links to source for API | Brian Ford | |
| This reverts commit 61fb5863df4afe0fad688a44ff78b245b8439db2. | |||
| 2013-07-11 | fix(ngValue): made ngValue to write value attribute to element | Mikk Kirstein | |
| 2013-07-11 | feat(ngDocs): add links to source for API | Julien Bouquillon | |
| - add tests - the link points to the gruntUtil.getVersion().number tree on github | |||
| 2013-07-11 | fix(scope): watches can be safely unregistered inside watch handlers | Paulo Scardine | |
| Closes #2915 | |||
| 2013-07-11 | chore(build): add check for merge conflicts, ddescribe, and iit | Brian Ford | |
| 2013-07-11 | test(ngPattern): fix disabled test | Igor Minar | |
| 2013-07-11 | test(ngList): remove disabled test | Igor Minar | |
| this test fails and we don't have intentions on making it pass since we never made a commitment to implement this feature. | |||
| 2013-07-11 | docs(ngList): fix example and add e2e test | Igor Minar | |
| 2013-07-11 | style(input): remove ws | Igor Minar | |
| 2013-07-10 | docs(guide): clarify example | sdesmond | |
| 2013-07-10 | docs(guide): example filter does not conditionally assign a color | sdesmond | |
| 2013-07-10 | docs(guide/di): fix typo | Robert Fauver | |
| 2013-07-10 | docs(contribute): improve git instructions | Tay Ray Chuan | |
| 2013-07-10 | docs(overview): fix typo | Lefteris Paraskevas | |
| Removed repeated "the" in the sentence: The input invalidates itself by turning red when you enter invalid data or leave "the" the input fields blank (Line 137). | |||
| 2013-07-10 | docs(ngMock): correct verifyNoOutstandingExpectation example | Mark Striemer | |
| 2013-07-09 | docs(angular.identity): fix missing 'angular' in identity function | Marco Vito Moscaritolo | |
| 2013-07-08 | docs(ngModelController): provide a more intuitive example | Pete Bacon Darwin | |
| The example directive, using contenteditable was not showing required even if you cleared the content from it. Closes #3156 | |||
| 2013-07-08 | docs(numberFilter): fix explanation of default fraction size | Pete Bacon Darwin | |
| The default fraction size for the number filter is actually computed from the `NUMBER_FORMATS.PATTERNS.maxFrac` value in the current locale. Closes #3157 | |||
| 2013-07-07 | docs(guide/e2e-testing): fix typos | tgkokk | |
| 2013-07-04 | docs(input): ng-model doesn't work well with isolated scope directive | basarat | |
| Closes #3123 | |||
| 2013-07-04 | docs(guide/directive): make directive controller minification-safe | Andrew O'Brien | |
| It is best to emphasize that the "controller" property needs to be min safe Closes #3125 | |||
| 2013-07-04 | fix($compile): empty normalized href should pass sanitation check | Anders Hessellund Jensen | |
| Sometimes IE returns an empty string for its normalized href on a tags. This should pass the sanitation check in $compile. Closes #2219, #2593 | |||
| 2013-07-03 | fix(jqLite): prepend array in correct order | Joao Sa | |
| Match jQuery behavior when prepending array into empty element | |||
| 2013-07-02 | docs(tutorial/step9): formatted Unicode character line | exex zian | |
| Add tick and cross mark corresponding to their respective unicodes. | |||
| 2013-07-02 | chore(travis): speed up the build | Vojta Jina | |
| - parallelize the tasks - cache requests (e2e tests) This reduces the time from ~18min to ~12min. It makes the output little messy. We could buffer output of each task and display it once it's fully finished, nicely. I think giving instant feedback is better. | |||
| 2013-07-02 | docs(guide/location): fix example code - `hashPrefix` is a method | Niall Smart | |
| 2013-07-01 | chore: add karma-script-launcher plugin | Vojta Jina | |
| This plugin is shipped as a default one with Karma. It's specified as a peer dependency. I assume, there's an old version of NPM on the CI server, which does not support peerDependencies and therefore it didn't get installed. This will make the dependency explicit. | |||
| 2013-07-01 | docs($cacheFactory): show that you can access existing caches | Itamar Rogel | |
| 2013-07-01 | docs(Angular.js): explain that toJson strips $... properties | Spencer Applegate | |
| In Angular.toJson, any properties with a leading '$' character will be stripped from the resulting string since angular uses this notation internally for services. There have been complaints of not knowing about this functionality until it breaks within their code. | |||
| 2013-06-28 | chore: set up Sauce Labs with Travis | Vojta Jina | |
| This should not affect the Jenkins build at all. Now, the Travis build uses Chrome on Sauce Labs, which in theory gives us opportunity to use any browser/platform that Sauce Labs offers. | |||
| 2013-06-28 | chore: clean up angularFiles.js | Vojta Jina | |
| 2013-06-28 | chore: update karma to 0.9.4 | Vojta Jina | |
| And also add shared config to make karma configs a bit simpler. | |||
| 2013-06-28 | chore: remove jstd leftovers | Vojta Jina | |
| 2013-06-28 | docs(misc/faq): remove obsolte t-shirt instructions | Igor Minar | |
