├── .gitignore └── app ├── js ├── controllers.show.js ├── application.js ├── framework.js └── controllers.index.js └── index.haml /.gitignore: -------------------------------------------------------------------------------- 1 | /public 2 | -------------------------------------------------------------------------------- /app/js/controllers.show.js: -------------------------------------------------------------------------------- 1 | controllers.show = function(key) { 2 | var _this = this; 3 | 4 | var story = _.find(store, function(story) { 5 | return story.key == key; 6 | }); 7 | 8 | function loadStory(url) { 9 | var iframe = $("