aboutsummaryrefslogtreecommitdiffstats
path: root/docs/examples
diff options
context:
space:
mode:
authorMisko Hevery2012-04-28 22:45:28 -0700
committerMisko Hevery2012-05-04 16:12:17 -0700
commit8e2675029f5ca404a7c649cc161df3ea642d941f (patch)
tree6668342fb2c57360e06c9e36bfd4e5e6e08a52f5 /docs/examples
parentd0159454dfa2e1cee4dd4ab7a41c2fcf9e121a64 (diff)
downloadangular.js-8e2675029f5ca404a7c649cc161df3ea642d941f.tar.bz2
chore(docs): re-skin main documentation
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>