From 1dd6bebc9d46af89c86f388a4786e7f88b96354d Mon Sep 17 00:00:00 2001 From: Darren Date: Mon, 7 Nov 2011 00:34:04 +0000 Subject: [PATCH] Tabview.getTab() comparison fix --- client/js/front.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/js/front.js b/client/js/front.js index 3fcd766..703eec8 100644 --- a/client/js/front.js +++ b/client/js/front.js @@ -1544,7 +1544,7 @@ Tabview.getTab = function (name) { // Go through each tabview and pick out the matching one $.each(kiwi.front.tabviews, function (i, item) { - if (item.name == name.toLowerCase()) { + if (item.name.toLowerCase() == name.toLowerCase()) { tab = item; return false; } -- 2.25.1