This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree
4 files changed
+21
-24
lines changed- docs/content/error/httpBackend
- src
- ng
- ngMock
- test/ng
4 files changed
+21
-24
lines changedThis file was deleted.
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 |
| - | |
| 3 | + | |
| 4 | + | |
4 | 5 |
| |
5 |
| - | |
6 |
| - | |
7 |
| - | |
8 |
| - | |
9 |
| - | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
| |||
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
31 |
| - | |
| 31 | + | |
32 | 32 |
| |
33 | 33 |
| |
34 | 34 |
| |
35 |
| - | |
| 35 | + | |
36 | 36 |
| |
37 | 37 |
| |
38 | 38 |
| |
| |||
57 | 57 |
| |
58 | 58 |
| |
59 | 59 |
| |
60 |
| - | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
61 | 63 |
| |
62 | 64 |
| |
63 | 65 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1572 | 1572 |
| |
1573 | 1573 |
| |
1574 | 1574 |
| |
| 1575 | + | |
| 1576 | + | |
| 1577 | + | |
| 1578 | + | |
1575 | 1579 |
| |
1576 | 1580 |
| |
1577 | 1581 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
53 | 53 |
| |
54 | 54 |
| |
55 | 55 |
| |
56 |
| - | |
| 56 | + | |
57 | 57 |
| |
58 | 58 |
| |
59 | 59 |
| |
| |||
250 | 250 |
| |
251 | 251 |
| |
252 | 252 |
| |
253 |
| - | |
| 253 | + | |
254 | 254 |
| |
255 | 255 |
| |
256 | 256 |
| |
| |||
426 | 426 |
| |
427 | 427 |
| |
428 | 428 |
| |
429 |
| - | |
| 429 | + | |
430 | 430 |
| |
431 | 431 |
| |
432 | 432 |
| |
| |||
437 | 437 |
| |
438 | 438 |
| |
439 | 439 |
| |
440 |
| - | |
| 440 | + | |
441 | 441 |
| |
442 | 442 |
| |
443 | 443 |
| |
| |||
465 | 465 |
| |
466 | 466 |
| |
467 | 467 |
| |
468 |
| - | |
| 468 | + | |
469 | 469 |
| |
470 | 470 |
| |
471 | 471 |
| |
| |||
480 | 480 |
| |
481 | 481 |
| |
482 | 482 |
| |
483 |
| - | |
| 483 | + | |
484 | 484 |
| |
485 | 485 |
| |
486 | 486 |
| |
|
6 commit comments
cgrodriguez commentedon Jan 14, 2014
@IgorMinar I have a very simple routing example that is working on angular 1.2.6 and isn't working on 1.2.7 (just ie8, working on firefox and chrome). Is it possible that this commit is breaking routing in ie8? When I replace this code on 1.2.7 (and 1.2.8) with the previous code on 1.2.6 it works again. Here is a plunkr with the example I was talking about: http://plnkr.co/edit/Tpceyo689yEC8WRHiMG2?p=preview
Also I don't know if this is the right place to submit this, should I open an issue with the problem (I'm not very familiar with github, sorry)?
caitp commentedon Jan 14, 2014
@cgrodriguez that plnkr seems to work fine in ie8
cgrodriguez commentedon Jan 14, 2014
Does it? Not for me, I get Typeerrors in ie8 console when clicking on links and views aren't shown. Same thing is happening in other projects I updated angular to 1.2.7 or 1.2.8. When debugging it, createXhr function is throwing the TypeError exception I talked about :(
caitp commentedon Jan 14, 2014
on saucelabs I'm not seeing any problems in the webconsole with the default browser settings. Maybe you have a security policy or something causing the issue?
cgrodriguez commentedon Jan 14, 2014
Thought about that and tried a bit without success. I'll give it another try asap and keep you updated. Thanks for your time and help!
cgrodriguez commentedon Jan 15, 2014
It was indeed a security issue, I had the "Enable Native xmlHTTP support" disabled so the "new window.XMLHttpRequest()" line threw an exception. I'll see if I can work around this since I can't tweak security settings for users at work. Thanks again! :)