summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/ios/www/js/lib/blogs
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/platforms/ios/www/js/lib/blogs')
-rw-r--r--StoneIsland/platforms/ios/www/js/lib/blogs/ArchiveView.js20
-rw-r--r--StoneIsland/platforms/ios/www/js/lib/blogs/HubView.js20
-rw-r--r--StoneIsland/platforms/ios/www/js/lib/blogs/StoryView.js20
3 files changed, 60 insertions, 0 deletions
diff --git a/StoneIsland/platforms/ios/www/js/lib/blogs/ArchiveView.js b/StoneIsland/platforms/ios/www/js/lib/blogs/ArchiveView.js
new file mode 100644
index 00000000..742ee0f2
--- /dev/null
+++ b/StoneIsland/platforms/ios/www/js/lib/blogs/ArchiveView.js
@@ -0,0 +1,20 @@
+var ArchiveView = View.extend({
+
+ el: "#archive",
+ template: $("#archive .template").html(),
+
+ events: {
+ },
+
+ initialize: function(){
+ this.$content = this.$(".content")
+ },
+
+ show: function(){
+ document.body.className = "archive"
+ },
+
+ populate: function(){
+ },
+
+}) \ No newline at end of file
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
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