Tag: v1.3.5
-
fix($emplateRequest): propagate rejection reason when ignoreRequestEr…
…ror flag is set Closes #10266
-
-
test($location): fix test of `{rewriteLinks:false}`
The test for not rewriting links was invalid and just happened to be passing by chance (false-positive).
-
petebacondarwin committed
Nov 10, 2014 -
revert: fix(Angular.js): toKeyValue is not serializing null values
This commit contained broken tests and was not ready to be merged. (reverted from commit 814c984)
-
fix(Angular.js): toKeyValue is not serializing null values
Signed-off-by: Josh Kurz <jkurz25@gmail.com>
-
-
docs(ngHref): fix poor paragraph construction
It was bad. In order to improve the docs, the inclusion of the last sentence would help define `ngHref` well. Closes #10254
-
fix(select): fix several issues when moving options between groups
* When an option was moved to a previous group, the group that loose the option would remove the label from the controller * When an entire option group was removed, the options in the group were mot removed from the controller Closes #10166
-
Should either be "a different version" or "different versions"; this goes with the latter. Closes #10249
-
Closes #10245
-
Closes #10231
-
style(*): IE is a real browser, and chakra is pretty solid
- IE9+ do not have issues with Function.prototype.bind() on builtin fns (asked Brian Terlson) (NOTE: there may still be corner cases where builtins will not have `bind()` --- this may need to be reverted on complaint). - HTMLScriptElement#text is an IDL-spec'd attribute, and we use it in all cases --- so the comment was sort of nonsense. - The value of `msie` does not depend on whether the user is using a "real" browser or not. Closes #10242
-
fix(linky): encode all double quotes when serializing email addresses
When encoding a URL or an email address, then escape all double quotes Closes #10090
-
fix(ngMock): respond did not always take a statusText argument
minor fix so that `respond` can take a `statusText` argument even when having status 200 by default Closes #8270
-
Closes #10204
-
fix($httpBackend): allow canceling request with falsy timeoutId
httpBackend with ngMock browser.defer could never cancel the first deferredFn because the timeoutId returned by defer for the first fn is a zero value. Compare timeoutId with undefined fix this issue. Closes #10177
-
fix(linky): encode double quotes when serializing email addresses
Email addresses can (under certain restrictions) include double quote characters. See http://tools.ietf.org/html/rfc3696#section-3. For example, `"Jo Bloggs"@abc.com` is a valid email address. When serializing emails to the `href` attribute of an anchor element, we must HTML encode these double quote characters. See http://www.w3.org/TR/html-markup/syntax.html#syntax-attr-double-quoted This commit does not attempt to improve the functionality (i.e. regex) that attempts to identify email addresses in a general string. Closes #8945 Closes #8964 Closes #5946 Closes #10090 Closes #9256
-
revert: fix(input): always pass in the model value to `ctrl.$isEmpty`
This commit tried to create consistency by ensuring that `$isEmpty` is not called on both model and view values but it chose to only use `$modelValue`, which is not actually correct. `$isEmpty` is designed to compute whether the `$viewValue` is empty. In practice this is the only part of the parse/format system that the directive has control over. We can't rely on the `$modelValue` being in any particular format since other directives can add in their own formatters and parsers to completely change this. (reverted from commit 3e51b84)
-
chore(docs): regroup version selector options into major branches and…
… latest Before this change we grouped by the discontinued stable/unstable distinction. Closes #10053