From 87fb922804bb3b7b0db6be3d3ac378ab72cc4393 Mon Sep 17 00:00:00 2001 From: danielgrippi Date: Tue, 24 Apr 2012 18:05:40 -0700 Subject: [PATCH] remove opacity and stuff from isotope [ci skip] --- app/assets/javascripts/app/views/canvas_view.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/app/views/canvas_view.js b/app/assets/javascripts/app/views/canvas_view.js index d82b7b5d0..8cecff5b2 100644 --- a/app/assets/javascripts/app/views/canvas_view.js +++ b/app/assets/javascripts/app/views/canvas_view.js @@ -25,6 +25,8 @@ app.views.Canvas = app.views.Base.extend(_.extend({}, app.views.infiniteScrollMi mason : function() { this.$el.isotope({ itemSelector : '.canvas-frame', + visibleStyle : {}, + hiddenStyle : {}, masonry : { columnWidth : 292.5 } @@ -43,9 +45,7 @@ app.views.Canvas = app.views.Base.extend(_.extend({}, app.views.infiniteScrollMi _.delay(_.bind(this.reLayout, this), 200) _.delay(_.bind(this.reLayout, this), 500) _.delay(_.bind(this.reLayout, this), 1000) - _.delay(_.bind(this.reLayout, this), 2000) _.delay(_.bind(this.reLayout, this), 3000) - _.delay(_.bind(this.reLayout, this), 4000) _.delay(_.bind(this.reLayout, this), 5000) } }));