aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-12-03chore(travis): switch back to SauceLabsVojta Jina
I think we are pretty close to be able to use both. The xhr-polling seems to be pretty stable, but I'm having problems with multiple SSH tunnels (on BS), so let's try to switch back to SL.
2013-12-03chore(travis): define a launcher for IE11 (SauceLabs)Vojta Jina
2013-12-03chore(travis): report both build number and id to BSVojta Jina
2013-12-03chore(travis): log used portsVojta Jina
2013-12-03chore(travis): use different port numbers per buildVojta Jina
We can't establish multiple SSH tunnels for the same port (for BrowserStack). This makes it possible to run multiple parallel builds using BrowserStack.
2013-12-03chore(karma): correct the 404 ignoringVojta Jina
2013-12-03docs: fixed a typo and made a minor edit to docs section of CONTRIBUTING.mdNaomi Black
2013-12-03style(Scope): remove extra wsIgor Minar
2013-12-03style(Scope): rename child scope type from Child to ChildScopeIgor Minar
This change makes it easier to debug angular, especiall when dealing with heap snapshots and hunting for memory leaks.
2013-12-03style(Angular.js): fix typo in commentIgor Minar
2013-12-03fix(ngSanitize): prefer textContent to innerText to avoid layout trashingMichał Gołębiowski
innerText depends on styling as it doesn't display hidden elements. Therefore, it's better to use textContent not to cause unnecessary reflows. However, IE<9 don't support textContent so the innerText fallback is necessary.
2013-12-03chore($parse): micro-optimization for ensureSafeObject functionKarl Seamon
This version matches the "alternate 2.2" version here: http://jsperf.com/ensuresafeobject/2 alternate 2.3 is a bit faster and simpler, but would break backwards compatibility. Closes #5246
2013-12-03fix(jqLite): ignore incompatible nodes on find()Hubert SABLONNIÈRE
When a jqLite collection contains text nodes, find() does not work :-( This fix ignores all nodes than can't do getElementsByTagName() It seems a little bit faster than testing nodeType : http://jsperf.com/nodetype-vs-duck-typing Closes #4120
2013-12-03fix($sanitize): don't rely on YARR regex engine executing immediatelyPete Bacon Darwin
In Safari 7 (and other browsers potentially using the latest YARR JIT library) regular expressions are not always executed immediately that they are called. The regex is only evaluated (lazily) when you first access properties on the `matches` result object returned from the regex call. In the case of `decodeEntities()`, we were updating this returned object, `parts[0] = ''`, before accessing it, `if (parts[2])', and so our change was overwritten by the result of executing the regex. The solution here is not to modify the match result object at all. We only need to make use of the three match results directly in code. Developers should be aware, in the future, when using regex, to read from the result object before making modifications to it. There is no additional test committed here, because when run against Safari 7, this bug caused numerous specs to fail, which are all fixed by this commit. Closes #5193 Closes #5192
2013-12-02chore(travis): increase BrowserStack timeout to 10minVojta Jina
Because IE is retarded.
2013-12-02chore(travis): ignore 404 warnings, debug log into fileVojta Jina
This is a terrible hack/workaround, however I don't think there is any better way to achieve this with log4js.
2013-12-02docs: update CONTRIBUTING.MD with process for doc fixesNaomi Black
2013-12-02chore(travis): fix the build id on browser stackVojta Jina
This just improves the way BrowserStack groups the sessions.
2013-12-02chore: use karma-browserstack-launcher from masterVojta Jina
2013-12-02chore(deps): use regular junit-reporterVojta Jina
We don't need the special branch anymore.
2013-12-02chore(travis): tolerate 2 disconnects to make the build more stableVojta Jina
2013-12-02chore(travis): use only websockets and xhr-pollingVojta Jina
I wanna see more info about BrowserStack...
2013-12-02chore(grunt): update to latest jshint taskJames Brewer
Upgrade JSHint task from ~0.6.4 to ~0.7.2. Two useful changes: ability to set jshintrc option to use jshint's native ability for finding .jshintrc files relative to the linted files and update jshint to 2.3.0. Closes #5143
2013-12-02docs($animate): require ngAnimate in example, syntax fixesBlaise Kal
The example in the section "JavaScript-defined Animations" would not run without the ngAnimate dependency. Also added a missing comma and semicolons.
2013-11-28chore(docs): fix back-to-top anchor in angularjs.org doc pagesPeter Bacon Darwin
Closes https://github.com/angular/angularjs.org/issues/45
2013-11-27docs(tutorial/step-10): fix typoLevi Weiss
Closes #5171
2013-11-27docs($compile): fix missing spaceStéphane Reynaud
2013-11-27docs(tutorial/step-12): fix typoAmmar
Closes #5148
2013-11-27docs(tutorial/step-0): add target="_blank" to open app in new pagemagoswiat
Closes #5145
2013-11-27docs(form): provide a list of Angular's built-in validation tokensBlaise Kal
As requested by a top-rated Disqus comment: http://docs.angularjs.org/api/ng.directive:form.FormController#comment-655325797 Closes #5121
2013-11-27docs(guide/concepts): fix incorrect module name in exampledeepak-kapoor
Closes #5116
2013-11-27docs($window): move use of $window to controllerwjtk
Move use of `$window` from template to controller, because accessing `$window` in expressions is now disallowed and doesn't work. Closes #5110
2013-11-27docs($injector): use square bracket notation for $inject annotationPete Bacon Darwin
Closes #5104
2013-11-27docs(guide/di): use square bracket notation for $inject annotationEvan Winslow
Closes #5104
2013-11-27docs(guide/providers): fix typoPavel Pomerantsev
Closes #5102
2013-11-27docs(guide/compiler): add fourth step on appending the compiled template to ↵Marc Lipovsky
the DOM Closes #5087
2013-11-27docs(migration): add a note about "private" properties being revertedrodyhaddad
Closes #5086
2013-11-27chore(release): start 1.2.4 wormhole-baster iterationPeter Bacon Darwin
2013-11-27chore(release): cut 1.2.3 unicorn-zapper releasev1.2.3Peter Bacon Darwin
2013-11-27docs(CHANGELOG): add v1.2.3 changesPeter Bacon Darwin
2013-11-26feat($attrs): add $attrs.$attr to externs so that it isn't renamedJeff Cross
This fixes the issue that any usage of $attr is broken after js compilation.
2013-11-26refactor($location): move file://+win path fix to $locationJeff Cross
The urlResolve method was fixed to automatically remove the volume label from path names to fix issues with the file protocol on windows where $location.path() was returning paths where the first segment would be the volume name, such as "/C:/mypath". See #4942 and #4928 However, the solution was specific to the $location non- HTML5 mode, and was implemented at a lower level of abstraction than it should have been. This refactor moves the fix to inside of the LocationHashBangUrl $$parse method. Closes #5041
2013-11-26chore(release): fix cdn version in package.jsonIgor Minar
2013-11-26fix($sanitize): Use same whitelist mechanism as $compile does.Tobias Bosch
`$sanitize` now uses the same mechanism as `$compile` to validate uris. By this, the validation in `$sanitize` is more general and can be configured in the same way as the one in `$compile`. Changes - Creates the new private service `$$sanitizeUri`. - Moves related specs from `compileSpec.js` into `sanitizeUriSpec.js`. - Refactors the `linky` filter to be less dependent on `$sanitize` internal functions. Fixes #3748.
2013-11-26chore($httpBackend): preserve original non-zero http status code for file:// ↵corrupt
apps Previously if an app was running from file:// origin we would always return either http 200 or 404 depending on whether the response was present. This changes the behavior so that we do this only if the protocol of the request (not the origin) is file:// and only if the status code is 0. Closes #4436 Closes #4587 Closes #4514
2013-11-26chore(mocks): wrap angular-mocks.js in closureDavid Mosher
Closes #5080
2013-11-26chore(changelog): remove tmp filePeter Bacon Darwin
2013-11-26docs(compile): fix typoadam77
Closes #5133
2013-11-26docs(CONTRIBUTING): fix broken link to GitHub PR HelperDeepak Kapoor
Closes #5134
2013-11-26docs(guide/scope): access the current element's scope in the console.smarigowda
Closes #4884