From fe83dad22e40fb17568351a8cd1fc93ec140be9c Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 26 Jan 2015 14:09:05 -0500 Subject: [PATCH] Popup now transitions on hide all --- src/definitions/modules/popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/definitions/modules/popup.js b/src/definitions/modules/popup.js index 0827ac34e..f9fa23c51 100644 --- a/src/definitions/modules/popup.js +++ b/src/definitions/modules/popup.js @@ -297,7 +297,7 @@ $.fn.popup = function(parameters) { hideAll: function() { $(selector.popup) .filter(':visible') - .transition('hide') + .transition(settings.transition) ; },