aboutsummaryrefslogtreecommitdiffstats
path: root/example/personalLog/personalLog.html
diff options
context:
space:
mode:
authorCaitlin Potter2014-02-21 14:31:23 -0500
committerCaitlin Potter2014-02-21 14:52:12 -0500
commit2f4513339337bb8aa6c9dfe1191d169b4fc57999 (patch)
treece0d47cee3d490c907cef680cc12e131f2a1cbf9 /example/personalLog/personalLog.html
parent4a6a3ba7fb08ce99007893ef75365a3e8aff938a (diff)
downloadangular.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/personalLog/personalLog.html')
-rw-r--r--example/personalLog/personalLog.html33
1 files changed, 0 insertions, 33 deletions
diff --git a/example/personalLog/personalLog.html b/example/personalLog/personalLog.html
deleted file mode 100644
index 483a37b8..00000000
--- a/example/personalLog/personalLog.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!doctype html>
-<html ng-app="personalLog">
- <head>
- <title>Personal Log</title>
- <script src="../../src/loader.js"></script>
- <script>
- setupModuleLoader(window);
- </script>
- <script src="personalLog.js"></script>
- <script src="../../src/angular-bootstrap.js"></script>
- <script src="../../src/ngCookies/cookies.js"></script>
- </head>
-
-
- <body ng-controller="LogCtrl">
-
- <form action="" ng-submit="addLog(newMsg)">
- <input type="text" ng-model="newMsg">
- <input type="submit" value="add">
- <input type="button" value="remove all" ng-click="rmLogs()">
- </form>
-
- <hr/>
- <h2>Logs:</h2>
- <ul>
- <li ng-repeat="log in logs | orderBy:'-at'">
- {{log.at | date:'yy-MM-dd HH:mm'}} {{log.msg}}
- [<a href="" ng-click="rmLog(log)">x</a>]
- </li>
- </ul>
-
- </body>
-</html>