diff options
| author | Peter Bacon Darwin | 2014-02-14 13:38:39 +0000 | 
|---|---|---|
| committer | Peter Bacon Darwin | 2014-02-16 19:03:43 +0000 | 
| commit | 6f0503514fd42e5ef950972946e0bf04044c0d13 (patch) | |
| tree | 8a094a75859b03947750ce20142180a46f45e1b8 /src | |
| parent | 5c6f9f8e8192030b0cb4d820f97de08f278c6075 (diff) | |
| download | angular.js-6f0503514fd42e5ef950972946e0bf04044c0d13.tar.bz2 | |
docs(ngRoute): ask for examples to have their base[href] fixed
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngRoute/directive/ngView.js | 4 | ||||
| -rw-r--r-- | src/ngRoute/route.js | 4 | 
2 files changed, 5 insertions, 3 deletions
| diff --git a/src/ngRoute/directive/ngView.js b/src/ngRoute/directive/ngView.js index 1c082962..3fa851a7 100644 --- a/src/ngRoute/directive/ngView.js +++ b/src/ngRoute/directive/ngView.js @@ -36,7 +36,9 @@ ngRouteModule.directive('ngView', ngViewFillContentFactory);   *                  - Otherwise enable scrolling only if the `autoscroll` attribute value evaluated   *                    as an expression yields a truthy value.   * @example -    <example module="ngViewExample" deps="angular-route.js;angular-animate.js" animations="true"> +    <example name="ngView-directive" module="ngViewExample" +             deps="angular-route.js;angular-animate.js" +             animations="true" fixBase="true">        <file name="index.html">          <div ng-controller="MainCntl as main">            Choose: diff --git a/src/ngRoute/route.js b/src/ngRoute/route.js index 3661722f..f958849e 100644 --- a/src/ngRoute/route.js +++ b/src/ngRoute/route.js @@ -269,7 +269,7 @@ function $RouteProvider(){         Note that this example is using {@link ng.directive:script inlined templates}         to get it working on jsfiddle as well. -     <example module="ngViewExample" deps="angular-route.js"> +     <example name="$route-service" module="ngRouteExample" deps="angular-route.js" fixBase="true">         <file name="index.html">           <div ng-controller="MainCntl">             Choose: @@ -302,7 +302,7 @@ function $RouteProvider(){         </file>         <file name="script.js"> -         angular.module('ngViewExample', ['ngRoute']) +         angular.module('ngRouteExample', ['ngRoute'])           .config(function($routeProvider, $locationProvider) {             $routeProvider.when('/Book/:bookId', { | 
