From 67abbb667f7597b9b2232da9bc7cae21ee94648a Mon Sep 17 00:00:00 2001 From: Thomas Date: Sun, 30 Mar 2014 23:16:10 +0200 Subject: [PATCH] typo in $.not selector --- lib/jquery.easytabs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jquery.easytabs.js b/lib/jquery.easytabs.js index d11c15e..a331421 100644 --- a/lib/jquery.easytabs.js +++ b/lib/jquery.easytabs.js @@ -185,7 +185,7 @@ }); // Don't hide panel if it's active (allows `getTabs` to be called manually to re-instantiate tab collection) - $matchingPanel.not(settings.panelActiveClass).hide(); + $matchingPanel.not("." + settings.panelActiveClass).hide(); plugin.panels = plugin.panels.add($matchingPanel);