diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-09-17 08:32:19 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-09-17 08:32:19 -0400 |
| commit | 58bf27362c0b3d1d41e135aa8bdbd38297a4d0f9 (patch) | |
| tree | d72c0d4c8d9d271bb28c9c77ed8f0ab6aec122ac /StoneIsland/www/js/lib/blogs | |
| parent | f613f9d9f8e7d8dc0561b46a702a670031648709 (diff) | |
add scrollers to a few things
Diffstat (limited to 'StoneIsland/www/js/lib/blogs')
| -rw-r--r-- | StoneIsland/www/js/lib/blogs/ArchiveView.js | 1 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/blogs/HubView.js | 1 | ||||
| -rw-r--r-- | StoneIsland/www/js/lib/blogs/StoryView.js | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/StoneIsland/www/js/lib/blogs/ArchiveView.js b/StoneIsland/www/js/lib/blogs/ArchiveView.js index 79139054..31dfd743 100644 --- a/StoneIsland/www/js/lib/blogs/ArchiveView.js +++ b/StoneIsland/www/js/lib/blogs/ArchiveView.js @@ -9,6 +9,7 @@ var ArchiveView = View.extend({ initialize: function(){ this.$content = this.$(".content") this.$loader = this.$(".loader") + this.scroller = new IScroll('#archive .scroll') }, show: function(){ diff --git a/StoneIsland/www/js/lib/blogs/HubView.js b/StoneIsland/www/js/lib/blogs/HubView.js index ce035c7d..88ae6f1f 100644 --- a/StoneIsland/www/js/lib/blogs/HubView.js +++ b/StoneIsland/www/js/lib/blogs/HubView.js @@ -9,6 +9,7 @@ var HubView = View.extend({ initialize: function(){ this.$content = this.$(".content") this.$loader = this.$(".loader") + this.scroller = new IScroll('#hub .scroll') }, show: function(){ diff --git a/StoneIsland/www/js/lib/blogs/StoryView.js b/StoneIsland/www/js/lib/blogs/StoryView.js index 4a825c8a..0f03a518 100644 --- a/StoneIsland/www/js/lib/blogs/StoryView.js +++ b/StoneIsland/www/js/lib/blogs/StoryView.js @@ -9,6 +9,7 @@ var StoryView = View.extend({ initialize: function(){ this.$content = this.$(".content") this.$loader = this.$(".loader") + this.scroller = new IScroll('#story .scroll') }, show: function(){ |
