diff options
| author | Caitlin Potter | 2014-02-21 14:31:23 -0500 |
|---|---|---|
| committer | Caitlin Potter | 2014-02-21 14:52:12 -0500 |
| commit | 2f4513339337bb8aa6c9dfe1191d169b4fc57999 (patch) | |
| tree | ce0d47cee3d490c907cef680cc12e131f2a1cbf9 /example/temp.html | |
| parent | 4a6a3ba7fb08ce99007893ef75365a3e8aff938a (diff) | |
| download | angular.js-2f4513339337bb8aa6c9dfe1191d169b4fc57999.tar.bz2 | |
chore(examples): remove ancient examples from the tree
Let these poor scripts retire, goodness.
Closes #6398
Closes #3310
Diffstat (limited to 'example/temp.html')
| -rw-r--r-- | example/temp.html | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/example/temp.html b/example/temp.html deleted file mode 100644 index da92c68c..00000000 --- a/example/temp.html +++ /dev/null @@ -1,30 +0,0 @@ -<!doctype html> -<html ng-app="example"> - <head> - <title>angular dev sandbox</title> - <script src="../src/loader.js"></script> - <script> - setupModuleLoader(window); - angular.module('example', [], function($routeProvider) { - $routeProvider.when('/view1', {controller: MyCtrl, templateUrl: 'view1.html'}); - $routeProvider.when('/view2', {controller: MyCtrl, templateUrl: 'view2.html'}); - - function MyCtrl($location, $scope) { - $scope.url = function() { - return $location.url(); - } - }; - }); - </script> - <script src="../src/angular-bootstrap.js"></script> - </head> - <body> - <p> - <a href="#/view1">view1</a> | <a href="#/view2">view2</a> | <a href="#">blank</a> - </p> - - <hr> - - <div ng-view></div> - </body> -</html> |
