Update ripples.js to pass travis validation

This commit is contained in:
Guilherme Rv Coelho 2014-12-28 13:52:06 -02:00
parent 27d1a7a8e5
commit 789d3517db

View File

@ -127,7 +127,7 @@
* Call the rippleEnd function when the transition "on" ends * Call the rippleEnd function when the transition "on" ends
*/ */
setTimeout(function() { setTimeout(function() {
self.rippleEnd($ripple) self.rippleEnd($ripple);
}, 500); }, 500);
@ -181,7 +181,7 @@
return false; return false;
} }
} };
/** /**
@ -209,7 +209,7 @@
return false; return false;
} }
} };
/** /**
@ -260,7 +260,7 @@
if($ripple.data("mousedown") === "off") { if($ripple.data("mousedown") === "off") {
self.rippleOut($ripple); self.rippleOut($ripple);
} }
} };
/** /**
@ -321,9 +321,9 @@
$.fn.ripples = function(options) { $.fn.ripples = function(options) {
return this.each(function() { return this.each(function() {
if(!$.data(this, "plugin_" + ripples)) { if(!$.data(this, "plugin_" + ripples)) {
$.data(this, "plugin_" + ripples, new Ripples(this, options)) $.data(this, "plugin_" + ripples, new Ripples(this, options));
} }
}); });
} };
})(jQuery, window, document); })(jQuery, window, document);