aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src
diff options
context:
space:
mode:
authorPete Bacon Darwin2013-05-07 11:43:25 +0100
committerPete Bacon Darwin2013-05-07 11:43:25 +0100
commitf046f6f73c910998a94f30a4cb4ed087b6325485 (patch)
tree7c0b79e931984a30a5c9731e7827b16ab07f9031 /docs/src
parent52c1498e25992f93ada72ea0621755ff2242b97f (diff)
downloadangular.js-f046f6f73c910998a94f30a4cb4ed087b6325485.tar.bz2
fix(dateFilter): correctly format ISODates on Android<=2.1
In older Android browsers, `undefined` does not act like `0` in some arithmetic operations. This leads to dates being formatted with `NaN` strings in the dateFilter because the implementation of the `dateGetter` function allows offset to be an optional parameter. The fix is to convert offset to 0 if it is undefined. Closes #2277, #2275
Diffstat (limited to 'docs/src')
0 files changed, 0 insertions, 0 deletions
6 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157