aboutsummaryrefslogtreecommitdiffstats
path: root/docs/examples
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples')
-rw-r--r--docs/examples/book.html2
-rw-r--r--docs/examples/chapter.html3
-rw-r--r--docs/examples/http-hello.html1
-rw-r--r--docs/examples/ng-include/template1.html1
-rw-r--r--docs/examples/ng-include/template2.html1
-rw-r--r--docs/examples/settings.html18
-rw-r--r--docs/examples/welcome.html5
7 files changed, 0 insertions, 31 deletions
diff --git a/docs/examples/book.html b/docs/examples/book.html
deleted file mode 100644
index 10d4dd91..00000000
--- a/docs/examples/book.html
+++ /dev/null
@@ -1,2 +0,0 @@
-controller: {{name}}<br />
-Book Id: {{params.bookId}}<br />
diff --git a/docs/examples/chapter.html b/docs/examples/chapter.html
deleted file mode 100644
index 5f11f704..00000000
--- a/docs/examples/chapter.html
+++ /dev/null
@@ -1,3 +0,0 @@
-controller: {{name}}<br />
-Book Id: {{prams.bookId}}<br />
-Chapter Id: {{params.chapterId}}
diff --git a/docs/examples/http-hello.html b/docs/examples/http-hello.html
deleted file mode 100644
index 80497589..00000000
--- a/docs/examples/http-hello.html
+++ /dev/null
@@ -1 +0,0 @@
-Hello, $http!
diff --git a/docs/examples/ng-include/template1.html b/docs/examples/ng-include/template1.html
deleted file mode 100644
index 804b7e0d..00000000
--- a/docs/examples/ng-include/template1.html
+++ /dev/null
@@ -1 +0,0 @@
-Content of template1.html
diff --git a/docs/examples/ng-include/template2.html b/docs/examples/ng-include/template2.html
deleted file mode 100644
index dad193c7..00000000
--- a/docs/examples/ng-include/template2.html
+++ /dev/null
@@ -1 +0,0 @@
-Content of template2.html
diff --git a/docs/examples/settings.html b/docs/examples/settings.html
deleted file mode 100644
index 74500b35..00000000
--- a/docs/examples/settings.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<label>Name:</label>
-<input type="text" ng:model="form.name" required>
-
-<div ng:repeat="contact in form.contacts">
- <select ng:model="contact.type">
- <option>url</option>
- <option>email</option>
- <option>phone</option>
- </select>
- <input type="text" ng:model="contact.url">
- [ <a href="" ng:click="form.contacts.$remove(contact)">X</a> ]
-</div>
-<div>
- [ <a href="" ng:click="form.contacts.$add()">add</a> ]
-</div>
-
-<button ng:click="cancel()">Cancel</button>
-<button ng:click="save()">Save</button>
diff --git a/docs/examples/welcome.html b/docs/examples/welcome.html
deleted file mode 100644
index b085123d..00000000
--- a/docs/examples/welcome.html
+++ /dev/null
@@ -1,5 +0,0 @@
-Hello {{person.name}},
-<div>
- Your contact information:
- <div ng:repeat="contact in person.contacts">{{contact.type}}: {{contact.url|linky}}</div>
-</div>