Skip to content
Permalink
Tag: v1.3.5
Commits on Dec 1, 2014
  1. fix(select): use strict compare when removing option from ctrl

    Narretz committed Nov 25, 2014
    Otherwise, if the removed option was the empty option (value ''),
    and the currently selected option had a value of 0, the select
    would think that the currently selected option had been removed,
    causing the unknown option to be added again.
    
    Fixes #9714
    Fixes #10115
    Closes #10203
  2. fix($emplateRequest): propagate rejection reason when ignoreRequestEr…

    pkozlowski-opensource committed Nov 29, 2014
    …ror flag is set
    
    Closes #10266
  3. refactor($templateRequest): simplify filtering out of transform funct…

    pkozlowski-opensource committed Nov 29, 2014
    …ions
    
    Closes #10264
  4. fix(ngMock): annotate $RootScopeDecorator

    shahata authored and pkozlowski-opensource committed Nov 30, 2014
    Fixes #10273
    Closes #10275
    Closes #10277
  5. test($location): fix test of `{rewriteLinks:false}`

    petebacondarwin committed Nov 10, 2014
    The test for not rewriting links was invalid and just happened to be
    passing by chance (false-positive).
  6. revert: fix(Angular.js): toKeyValue is not serializing null values

    petebacondarwin committed Dec 1, 2014
    This commit contained broken tests and was not ready to be merged.
    
    (reverted from commit 814c984)
  7. fix(Angular.js): toKeyValue is not serializing null values

    jkurz committed Apr 3, 2014
    Signed-off-by: Josh Kurz <jkurz25@gmail.com>
Commits on Nov 30, 2014
  1. chore(docs): fix dangling links warning in $http API

    jesselpalmer authored and pkozlowski-opensource committed Nov 30, 2014
    Closes #10270
Commits on Nov 29, 2014
  1. docs($rootElement): fix minor grammatical errors

    PoetsRock authored and pkozlowski-opensource committed Nov 29, 2014
    Closes #10269
  2. style(ngHref): make jscs happy ;-;

    caitp committed Nov 29, 2014
  3. docs(ngHref): fix poor paragraph construction

    sagar-ranglani authored and caitp committed Nov 28, 2014
    It was bad.
    
    In order to improve the docs, the inclusion of the last sentence would help define `ngHref` well.
    
    Closes #10254
Commits on Nov 27, 2014
  1. fix(select): fix several issues when moving options between groups

    lgalfaso authored and petebacondarwin committed Nov 22, 2014
    * 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
  2. docs(guide/ie): fixed minor typo

    atesgoral authored and Narretz committed Nov 27, 2014
    Closes #10251
  3. docs(tutorial): fix grammar

    erictheise authored and pkozlowski-opensource committed Nov 27, 2014
    Should either be "a different version" or "different versions";
    this goes with the latter.
    
    Closes #10249
  4. docs(guide): fix typo

    Danny Shekhtman authored and pkozlowski-opensource committed Nov 26, 2014
    Closes #10245
  5. docs($compile): fix grammar

    rgksugan authored and pkozlowski-opensource committed Nov 26, 2014
    Closes #10231
Commits on Nov 26, 2014
  1. style(*): IE9 does still have issues with apply on some native functions

    caitp authored and petebacondarwin committed Nov 26, 2014
    This partially reverts 8f05ca5
    
    Related to #10242
  2. style(*): IE is a real browser, and chakra is pretty solid

    caitp committed Nov 26, 2014
    - 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
  3. fix(linky): encode all double quotes when serializing email addresses

    lgalfaso committed Nov 26, 2014
    When encoding a URL or an email address, then escape all double quotes
    
    Closes #10090
  4. fix(ngMock): respond did not always take a statusText argument

    shahata authored and pkozlowski-opensource committed Jul 19, 2014
    minor fix so that `respond` can take a `statusText` argument
    even when having status 200 by default
    
    Closes #8270
  5. docs(ngRoute): clarify JSDoc for caseInsensitiveMatch

    oneeman authored and pkozlowski-opensource committed Nov 25, 2014
    Closes #10220
  6. docs(CHANGELOG): remove * component

    gkalpak authored and pkozlowski-opensource committed Nov 26, 2014
    Closes #10222
Commits on Nov 25, 2014
  1. docs($compile): fix grammar

    Mathew Foscarini authored and pkozlowski-opensource committed Nov 23, 2014
    Closes #10204
  2. fix($httpBackend): allow canceling request with falsy timeoutId

    gyx1000 authored and pkozlowski-opensource committed Nov 10, 2014
    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
Commits on Nov 24, 2014
  1. docs(CHANGELOG): add v1.3.4 changes

    lgalfaso committed Nov 24, 2014
  2. fix(Angular): properly get node name for svg element wrapper

    pkozlowski-opensource authored and petebacondarwin committed Nov 22, 2014
    Fixes #10078
    Closes #10172
Commits on Nov 23, 2014
  1. perf(*): use Object.create instead of creating temporary constructors

    jbedard authored and petebacondarwin committed Nov 14, 2014
    Closes #10058
  2. fix(linky): encode double quotes when serializing email addresses

    lgalfaso authored and petebacondarwin committed Sep 5, 2014
    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
  3. fix(input): set ngTrueValue on required checkbox

    Narretz authored and petebacondarwin committed Nov 21, 2014
    Fixes #5164
  4. revert: fix(input): always pass in the model value to `ctrl.$isEmpty`

    petebacondarwin committed Nov 21, 2014
    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)
  5. chore(docs): regroup version selector options into major branches and…

    thorn0 authored and petebacondarwin committed Nov 14, 2014
    … latest
    
    Before this change we grouped by the  discontinued stable/unstable distinction.
    
    Closes #10053
Older
You can’t perform that action at this time.