aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-01-10docs: update step_04.ngdoc with a clarificationNaomi Black
closes #5730
2014-01-10docs: add clarification in step 2 of the tutorialNaomi Black
2014-01-10chore(release): update cdn versionjenkins
2014-01-10chore(release): start v1.2.9 (1.2.9)jenkins
2014-01-10chore(release): cut v1.2.8 releasev1.2.8jenkins
2014-01-10docs(changelog): release notes for 1.2.8Brian Ford
2014-01-10docs(select): update regexp grouping cheat-sheatAjay Roopakalu
Update the regexp grouping comment to reflect the changes needed for multiline expressions in ng-options for <select>. Closes #5602
2014-01-10feat(select): allow multiline ng-optionsAjay Roopakalu
This patch allows the ng-options value of a <select> element to span multiple lines, which would previously throw an error when used with filters. Closes #5602
2014-01-10fix($http): return responseText on IE8 for requests with responseType setIgor Minar
Closes #4464 Closes #4738 Closes #5636
2014-01-10docs: fix the 'view source' button for snapshotsNarretz
Closes #5590 Closes #5641
2014-01-10docs(\$resource): fixed typo (s/seapph/search)René Wilhelm
Closes #5718
2014-01-10docs($location): fix link to $locationChangeSuccess eventCaitlin Potter
Closes #5717
2014-01-09revert: fix($location): return '/' for root path in hashbang modeIgor Minar
This reverts commit 63cd873fef3207deef30c7a7ed66f4b8f647dc12. The change breaks existing tests of Google apps. The problem is that while we tried to avoid adding #/ to window.location.href unnecessarily we failed doing so. Likely because by setting $path, at some point (during a digest) we try to check if $location changed and we mistake the default '/' with an explicit settign of the path via the `path()` method. This results in us writing the url with '#/' into $browser.url() which updates the window.location by adding "#/" to the url - something we tried to avoid in the first place. I'll reopen PR #5712.
2014-01-09test(docs): add protractor tests for docs appJeff Cross
Closes #5437
2014-01-09chore(build): bugfix for script utilsTobias Bosch
2014-01-09fix($location): return '/' for root path in hashbang modeCaitlin Potter
Before this change, on the root of the application, $location.path() would return the empty string. Following this change, it will always return a root of '/'. Closes #5650 Closes #5712
2014-01-09docs(tutorial): improve experiment instructionsIgor Minar
Closes #5697
2014-01-09feat(build): add a grunt test for running protractor tests extracted from ↵Julie
the docs
2014-01-09fix(docs): Add missing whitespaceRené Wilhelm
2014-01-09fix(docs): Update reference to `$routeProvider.otherwise`stucash
2014-01-09fix(docs): Clarifying versions of IE that need special fixesCraig Younkins
2014-01-09chore(build): check cdn before executing the release-after-cdn scriptTobias Bosch
2014-01-09chore(build): add relase-after-cdn scriptTobias Bosch
2014-01-09fix($httpBackend): Allow status code 0 from any protocolRafał Jagoda
Android 4.1 stock browser also returns status code 0 when a template is loaded via `http` and the application is cached using appcache. Fixes #1356. Closes #5547.
2014-01-08feat(docs): adding the <doc:protractor> ngdoc-tagJulie
This is the first step in migrating tests from <doc:scenario> to <doc:protractor>. In-documentation examples with doc:protractor sections will have their contents output to a tab on the docs site as well as output to a standalone test file in build/docs/ptore2e.
2014-01-08docs(script): add more detailed informationGias Kay Lee
Closes #5671 Closes #5676
2014-01-08fix($httpBackend): cancelled JSONP requests will not print error in the consoleArtemy Tregubenko
When you cancel a JSONP request, angular deletes the callback for it. However the script still executes, and since the callback is now deleted and undefined, the script throws an exception visible in the console. The quick fix for this is not to delete the callback, but replace it with `angular.noop`. Closes #5615 Closes #5616
2014-01-07docs($document): moar better descriptionIgor Minar
Closes #5678
2014-01-07docs($document): improve the descriptionIgor Minar
Closes #5678
2014-01-07chore(build): fix typo in release scriptTobias Bosch
2014-01-07refactor(booleanAttrs, ngSwitch): use link function instead of compile ↵Gias Kay Lee
function where appropriate Replace two compile functions that immediately return a post-link function with link function definitions instead. Closes #5664
2014-01-07docs(directives): Fixed typo from HMTL to HTML in line 283Zhong Liang Ong
HTML was mis-spelt as HMTL
2014-01-07chore(build): Add angular-seed and angular-phonecat to the releaseTobias Bosch
2014-01-07chore(travis): use Safari 7Vojta Jina
2014-01-07chore(travis): use FF26Vojta Jina
I think it's better to not specify the version as that should give the latest available version. We should probably revert this commit at some point.
2014-01-06test(ngMock): fix the tests to not use global msieVojta Jina
My bad when merging 7e916455b36dc9ca4d4afc1e44cade90006d00e3. These tests are run with compiled Angular and then the msie is not defined.
2014-01-06fix(ngMock window.inject): Remove Error 'stack' property changesAndrew C. Greenberg
Recent browsers, particularly PhantomJS 1.9.2 and Safari 7.0 treat the stack property as non-configurable and unwritable. Because window.inject captures the stack at the time of the inject, and attempts to insert it into a captured throw from the injected function by modifying e.stack, a meaningless error message and stack is thrown instead. This commit inserts two tests exposing the problem, and implements a proposed solution that builds a new error-like object that mimicks the old Error object, but with the additional stack information, and captures the toString function from the Error object prototype. This appears to work for the browsers suppoerted here.
2014-01-06refactor(input): wrapped validation logic in helper functionBen Wiklund
Closes #5643
2014-01-06docs($compile): fix a typoGias Kay Lee
Closes #5639
2014-01-06docs(tutorial/step-12): replaced a missing apostrophe and fixed grammar errorsJay Goldman
Fixed a missing apostrophe and some grammar in the Animating 'ngClass' with JavaScript section
2014-01-06docs(form): changed capitalization in CSS classes sectionjesse
In order to improve readability from "Is set" (confused on my screen as 'Ls set') updated the capitalization describing the setting of 4 CSS classes. Closes #5642
2014-01-06chore(inputSpec): fixed typoBen Wiklund
2014-01-06docs(forms): show directive name instead of link pathRoy Ling
2014-01-06docs(guide/i18n): fix a typoTyler McGinnis
Closes #5651
2014-01-06chore(build): bugfixes to build scripts on JenkinsTobias Bosch
2014-01-06docs(tutorial): do not recommend global install of KarmaVojta Jina
Closes #5498
2014-01-06chore(build): bugfixes to build scripts on Jenkins.Tobias Bosch
2014-01-06chore(build): refactor build scripts in prepare/publish phaseTobias Bosch
Refactored all scripts so that they are divided into a `prepare` and a `publish` phase. By this we can build, test, tag, commit everything first. Only if all of this is ok we start pushing to Github. By this we keep Github consistent even in error cases. Extracted include script `/scripts/utils.inc`: - parse and validate named arguments in the style `--name=value` - proxy git command and deactivate `git push` based on command option `--git_push_dry_run=true` (will be inherited to child scripts) - enable/disable bash debug mode by command option `--verbose=true` - dispatch to functions based on command option `--action=...` - helper functions for dealing with json files
2014-01-06chore: strict deps Karma and pluginsVojta Jina
So that we have a better control when updating Karma.
2014-01-06chore(docs): remove uppercase heading stylingMatias Niemelä
Closes #5593