This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2>List of articles:</h2> | |
<ul> | |
{{#each article in controller}} | |
<li><a {{action showArticle article href=true}}>{{article.title}}</a></li> | |
{{/each}} | |
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mobile.Router = Em.Router.extend | |
enableLogging: true | |
location: "history" | |
root: Em.Route.extend | |
index: Em.Route.extend | |
route: "/" | |
articles: Em.Route.extend | |
# Example URL: /articles/501b7878b19fb834f900005d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mobile.Store.createRecord | |
Mobile.ArticleModel | |
title: "Es ist wieder soweit" |