Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

Updates libraries and fixes broken list rendering. #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<link rel="stylesheet" href="css/style.css?v=2">

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
<link rel="stylesheet" href="css/style.css">
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
Expand All @@ -34,9 +35,9 @@ <h1>Sample Ember.js + jQuery Mobile App</h1>
<br/>
{{#collection App.ListView contentBinding="App.listController"}}
<a href="#">
<img {{bindAttr src="content.thumbnail"}}/>
<h3>{{content.title}}</h3>
<p>{{content.description}}</p>
<img {{bindAttr src="view.content.thumbnail"}}/>
<h3>{{view.content.title}}</h3>
<p>{{view.content.description}}</p>
</a>
{{/collection}}
{{/view}}
Expand All @@ -48,10 +49,9 @@ <h3>{{content.title}}</h3>
</script>
<div data-role="page">Splash Screen Goes Here</div>

<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

<script src="//cdnjs.cloudflare.com/ajax/libs/ember.js/0.9.8.1/ember-0.9.8.1.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0/handlebars.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/ember.js/1.1.2/ember.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/ember-data.js/0.13.0/ember-data-latest.js"></script>
<script src="js/app.js"></script>
<script src="//code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
</body>
</html>