diff options
Diffstat (limited to 'StoneIsland/platforms/ios/www/js/lib/blogs/StoryView.js')
| -rw-r--r-- | StoneIsland/platforms/ios/www/js/lib/blogs/StoryView.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/StoneIsland/platforms/ios/www/js/lib/blogs/StoryView.js b/StoneIsland/platforms/ios/www/js/lib/blogs/StoryView.js new file mode 100644 index 00000000..ed46af31 --- /dev/null +++ b/StoneIsland/platforms/ios/www/js/lib/blogs/StoryView.js @@ -0,0 +1,20 @@ +var StoryView = View.extend({ + + el: "#story", + template: $("#story .template").html(), + + events: { + }, + + initialize: function(){ + this.$content = this.$(".content") + }, + + show: function(){ + document.body.className = "story" + }, + + populate: function(){ + }, + +})
\ No newline at end of file |
