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