Peter Bacon Darwin
6b9a332959
style($route): convert tab indent to spaces
2014-07-15 14:01:09 +01:00
Sekib Omazic
f1b28847c8
fix(orderBy): correctly order by date values
...
Closes #6675
Closes #6746
2014-07-15 13:41:27 +01:00
Jason Miller
1b779028fd
fix(ngRoute): remove unnecessary call to decodeURIComponent
...
Since `$location.$$path` is already decoded, doing an extra `decodeURIComponent` is both unnecessary
and can cause problems. Specifically, if the path originally includes an encoded `%` (aka `%25`),
then ngRoute will throw "URIError: URI malformed".
Closes #6326
Closes #6327
2014-07-15 13:24:40 +01:00
Wladimir Coka
49b2a1c8cf
refactor($parse): improve readability on conditional assignment
...
Use logical OR operator instead of if statement
Closes #5065
2014-07-15 12:49:00 +01:00
Wladimir Coka
3e82492fc6
refactor($http): improve readability on conditional assignment
...
Use ternary operator instead of if statement
Closes #5065
2014-07-15 12:48:48 +01:00
Wladimir Coka
856be44628
refactor(dateFilter): improve readability on conditional assignment
...
Use ternary operator instead of if statement
Closes #5065
2014-07-15 12:48:39 +01:00
Wladimir Coka
dbb21b1531
refactor($compile): improve readability on conditional assignment
...
Use ternary operator instead of if statement
Closes #5065
2014-07-15 12:48:09 +01:00
Peter Bacon Darwin
3ce56b739c
docs(guide/unit-testing): add info on testing element transclude directives
...
Closes #4505
Closes #8197
2014-07-15 12:40:26 +01:00
Igor Minar
0e5d31908e
fix(csp): fix autodetection of CSP + better docs
...
CSP spec got changed and it is no longer possible to autodetect if a policy is
active without triggering a CSP error:
18882953ce
Now we use `new Function('')` to detect if CSP is on. To prevent error from this
detection to show up in console developers have to use the ngCsp directive.
(This problem became more severe after our recent removal of `simpleGetterFn`
which made us depend on function constructor for all expressions.)
Closes #8162
Closes #8191
2014-07-14 17:20:06 -07:00
standup75
f1b0d21f97
docs(ngAnimate): ensure the CSS breakdown example uses a compound selector
2014-07-14 11:29:35 -04:00
rodyhaddad
75099e6137
chore($parse): remove simpleGetter optimizations as they're no longer valid
...
Closes #8101
2014-07-10 15:17:41 -07:00
perek
172a40931b
fix($http) - add ability to remove default headers
...
Fixes #5784
Closes #5785
2014-07-10 14:38:19 -07:00
Julie Ralph
888be00712
chore(tests): fix warning about a non-unique element locator in e2e tests
2014-07-08 16:28:12 -07:00
Brian Ford
ab051e78ea
docs(select): update example to use a module
2014-07-08 02:32:21 -07:00
Brian Ford
ae764f1844
docs(linky): update example to use a module
2014-07-08 02:32:21 -07:00
Brian Ford
ad8092ed80
docs(angular.copy): update example to use a module
2014-07-08 02:32:21 -07:00
Brian Ford
55e1b3e1c8
docs($sanitize): update example to use a module
2014-07-08 02:32:20 -07:00
Brian Ford
5c2302949b
docs($cookies): update examples to use modules
2014-07-08 02:32:20 -07:00
Brian Ford
7c84e2632f
docs(orderBy): update examples to use modules
2014-07-08 02:32:20 -07:00
Brian Ford
18d18f07db
docs(limitTo): update example to use a module
2014-07-08 02:32:20 -07:00
Brian Ford
9f5be534fc
docs(ngTransclude): update example to use a module
2014-07-08 02:32:20 -07:00
Brian Ford
1cd7912614
docs($log): update example to use a module
2014-07-08 02:32:19 -07:00
Brian Ford
514da451fc
docs(ngPluralize): update example to use a module
2014-07-08 02:32:19 -07:00
Brian Ford
2788cc4e12
docs(ngSwitch): update example to use a module
2014-07-08 02:32:19 -07:00
Brian Ford
7f6322df6a
docs(ngInit): update example to use a module
2014-07-08 02:32:19 -07:00
Brian Ford
5bd8613168
docs(ngValue): update example to use a module
2014-07-08 02:32:19 -07:00
Brian Ford
32b507890e
docs(ngList): update example to use a module
2014-07-08 02:32:19 -07:00
Brian Ford
bfedafdede
docs(ngInclude): update example to use a module
2014-07-08 02:32:19 -07:00
Brian Ford
cdefbe3425
docs($interval): update example to use a module
2014-07-08 02:32:19 -07:00
Brian Ford
f75f4bce82
docs(filters): update examples to use modules
2014-07-08 02:32:19 -07:00
Brian Ford
4349de3d41
docs(ngController): update examples to use modules
2014-07-08 02:32:18 -07:00
Brian Ford
df545d7eed
docs($window): update example to use a module
2014-07-08 02:32:18 -07:00
Brian Ford
3b5f346314
docs(ngSubmit): update example to use a module
2014-07-08 02:32:18 -07:00
Brian Ford
3aab87b381
docs(ngBind): update examples to use modules
2014-07-08 02:32:18 -07:00
Brian Ford
0973175058
docs($http): update example to use a module
2014-07-08 02:32:18 -07:00
Brian Ford
112da45c07
docs($document): update example to use a module
2014-07-08 02:32:18 -07:00
Brian Ford
e3dc85841d
docs(ngChange): update example to use a module
2014-07-08 02:32:18 -07:00
Brian Ford
ef1c352bc9
docs(ngModel): update examples to use modules
2014-07-08 02:32:18 -07:00
Brian Ford
a5b6444324
docs(formDirective): update example to use a module
2014-07-08 02:32:17 -07:00
Brian Ford
dd18c00b1d
docs($compile): update example to use a module
2014-07-08 02:32:17 -07:00
Shahar Talmi
da0e3c99f5
fix(input): escape forward slash in email regexp
...
This messed up with syntax coloring and variable hovering in chrome developer tools and made debugging really difficult.
Closes #8096
2014-07-07 16:26:27 -04:00
Julie Ralph
a41c58e285
chore(tests): increase timeout for navigation in ng-href tests to avoid timeouts
...
Previously, the timeout for ng-href tests waiting for the url change after a link
was clicked was only 1000 ms. This was causing some flaky timeouts, so increasing
the wait to 5000 ms.
2014-07-07 11:21:33 -07:00
Julie Ralph
bce5b49133
chore(e2e): update protractor to 1.0.0-rc2 and add more logging
...
Use the new options from the reporter to add more logging to end to end tests,
and increase the Jasmine test timeout from 30 seconds to 60 seconds to allow for
legitimately long-lasting tests.
2014-07-07 11:07:48 -07:00
Kevin Brogan
816b84230c
fix(input): modify email validation regexp to match rfc1035
...
Previously, domain parts which began with or ended with a dash, would be accepted as valid. This CL matches Angular's email validation with that of Chromium and Firefox.
Closes #6026
2014-07-07 13:51:58 -04:00
Caitlin Potter
873acf8fab
fix(parseKeyValue): ignore properties in prototype chain.
...
Previously, properties (typically functions) in the prototype chain (Object.prototype) would shadow
query parameters, and cause them to be serialized incorrectly.
This CL guards against this by using hasOwnProperty() to ensure that only own properties are a concern.
Closes #8070
Fixes #8068
2014-07-03 21:58:10 -04:00
Matias Niemelä
931789ec14
feat(ngAnimate): conditionally allow child animations to run in parallel with parent animations
...
By default ngAnimate prevents child animations from running when a parent is performing an animation.
However there are a cases when an application should allow all child animations to run without blocking
each other. By placing the `ng-animate-children` flag in the template, this effect can now be put to
use within the template.
Closes #7946
2014-07-03 19:35:17 +03:00
Peter Bacon Darwin
9bc807783f
docs($httpProvider): revert removal of comments
...
Related to #7782
2014-07-03 13:29:24 +01:00
Cory Boyd
2d6ee651b1
docs($httpProvider): add missing documentation
...
Add documentation for $httpProvider default values
Closes #6682
2014-07-03 13:24:48 +01:00
Mike Haas
d9b693bb7a
docs($compile): fix minor typo
...
Closes #8048
2014-07-03 09:51:40 +01:00
Peter Bacon Darwin
da94ab2e63
docs($logProvider): debugEnabled is a method not a property
...
Closes #7824
2014-07-03 09:51:40 +01:00