diff options
| author | Igor Minar | 2012-04-11 21:12:48 -0700 | 
|---|---|---|
| committer | Igor Minar | 2012-04-11 21:27:55 -0700 | 
| commit | 0c49bbdc38d228c7612bbda0420e4f17ba501528 (patch) | |
| tree | 555f284b9e9e0e8a905e70cda4d2c42250321642 /src | |
| parent | 7d074a377542028f1c2c184c51971f16ca0e6238 (diff) | |
| download | angular.js-0c49bbdc38d228c7612bbda0420e4f17ba501528.tar.bz2 | |
test(ngView): fix failing e2e tests
Diffstat (limited to 'src')
| -rw-r--r-- | src/ng/directive/ngView.js | 10 | ||||
| -rw-r--r-- | src/ng/route.js | 10 | 
2 files changed, 10 insertions, 10 deletions
| diff --git a/src/ng/directive/ngView.js b/src/ng/directive/ngView.js index 4f6a70ba..16ae792e 100644 --- a/src/ng/directive/ngView.js +++ b/src/ng/directive/ngView.js @@ -61,11 +61,11 @@          <div ng-controller="MainCntl">            Choose: -          <a href="/Book/Moby">Moby</a> | -          <a href="/Book/Moby/ch/1">Moby: Ch1</a> | -          <a href="/Book/Gatsby">Gatsby</a> | -          <a href="/Book/Gatsby/ch/4?key=value">Gatsby: Ch4</a> | -          <a href="/Book/Scarlet">Scarlet Letter</a><br/> +          <a href="Book/Moby">Moby</a> | +          <a href="Book/Moby/ch/1">Moby: Ch1</a> | +          <a href="Book/Gatsby">Gatsby</a> | +          <a href="Book/Gatsby/ch/4?key=value">Gatsby: Ch4</a> | +          <a href="Book/Scarlet">Scarlet Letter</a><br/>            <div ng-view></div>            <hr /> diff --git a/src/ng/route.js b/src/ng/route.js index fe726b88..895749fe 100644 --- a/src/ng/route.js +++ b/src/ng/route.js @@ -158,11 +158,11 @@ function $RouteProvider(){            <div ng-controller="MainCntl">              Choose: -            <a href="/Book/Moby">Moby</a> | -            <a href="/Book/Moby/ch/1">Moby: Ch1</a> | -            <a href="/Book/Gatsby">Gatsby</a> | -            <a href="/Book/Gatsby/ch/4?key=value">Gatsby: Ch4</a> | -            <a href="/Book/Scarlet">Scarlet Letter</a><br/> +            <a href="Book/Moby">Moby</a> | +            <a href="Book/Moby/ch/1">Moby: Ch1</a> | +            <a href="Book/Gatsby">Gatsby</a> | +            <a href="Book/Gatsby/ch/4?key=value">Gatsby: Ch4</a> | +            <a href="Book/Scarlet">Scarlet Letter</a><br/>              <div ng-view></div>              <hr /> | 
