summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2013-07-16 09:17:31 -0600
committermo khan <mo@mokhan.ca>2013-07-16 09:17:31 -0600
commitfb54fedb0b37e5489834a1546871946305078efb (patch)
tree07250cc48b6c8d213800335af9d650a03ea36134
parent5fdb61ab6a29b278a3ff5bd3677ca30869c5746a (diff)
remove extra files to follow the getting started tutorial
-rwxr-xr-xTODO.txt23
-rw-r--r--index.html28
-rwxr-xr-xjs/app.js11
3 files changed, 6 insertions, 56 deletions
diff --git a/TODO.txt b/TODO.txt
deleted file mode 100755
index 9de4860..0000000
--- a/TODO.txt
+++ /dev/null
@@ -1,23 +0,0 @@
- ______ _ _
- | ____| | | (_)
- | |__ _ __ ___ | |__ ___ _ ___ _ ___
- | __| | '_ ` _ \| '_ \ / _ \ '__/| |/ __|
- | |____| | | | | | |_) | __/ | _ | |\__ \
- |______|_| |_| |_|_.__/ \___|_|(_)| ||___/
- _/ |
- |__/
-
-Your Ember.js project is almost ready! Here's how to get started:
-
-- Start writing your app in js/app.js.
-
-- Describe your application HTML in index.html.
-
-- During development, you can link to js/libs/ember-*.js to get the
- unminified version of Ember.js.
-
-- Add CSS to css/style.css
-
-== Contact =======================
-
-www.emberjs.com
diff --git a/index.html b/index.html
index 88b365c..5a5ac43 100644
--- a/index.html
+++ b/index.html
@@ -3,30 +3,14 @@
<head>
<meta charset="utf-8">
<title>Ember Starter Kit</title>
- <link rel="stylesheet" href="css/normalize.css">
- <link rel="stylesheet" href="css/style.css">
+<link rel="stylesheet" href="css/normalize.css">
+<link rel="stylesheet" href="css/style.css">
</head>
<body>
- <script type="text/x-handlebars">
- <h2>Welcome to Ember.js</h2>
-
- {{outlet}}
- </script>
-
- <script type="text/x-handlebars" data-template-name="index">
- <ul>
- {{#each item in model}}
- <li>{{item}}</li>
- {{/each}}
- </ul>
- </script>
-
- <script src="js/libs/jquery-1.9.1.js"></script>
- <script src="js/libs/handlebars-1.0.0-rc.4.js"></script>
- <script src="js/libs/ember-1.0.0-rc.6.js"></script>
- <script src="js/libs/ember-data-0.13.js"></script>
- <script src="js/app.js"></script>
-
+<script src="js/libs/jquery-1.9.1.js"></script>
+<script src="js/libs/handlebars-1.0.0-rc.4.js"></script>
+<script src="js/libs/ember-1.0.0-rc.6.js"></script>
+<script src="js/libs/ember-data-0.13.js"></script>
</body>
</html>
diff --git a/js/app.js b/js/app.js
deleted file mode 100755
index a88ce3e..0000000
--- a/js/app.js
+++ /dev/null
@@ -1,11 +0,0 @@
-App = Ember.Application.create();
-
-App.Router.map(function() {
- // put your routes here
-});
-
-App.IndexRoute = Ember.Route.extend({
- model: function() {
- return ['red', 'yellow', 'blue'];
- }
-});