projects
/
KiwiIRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b399cb
)
Tabview.getTab() comparison fix
author
Darren
<darren@darrenwhitlen.com>
Mon, 7 Nov 2011 00:34:04 +0000
(
00:34
+0000)
committer
Darren
<darren@darrenwhitlen.com>
Mon, 7 Nov 2011 00:34:04 +0000
(
00:34
+0000)
client/js/front.js
patch
|
blob
|
blame
|
history
diff --git
a/client/js/front.js
b/client/js/front.js
index 3fcd76634d8c48886deba9d1f0fd8e247967da05..703eec8d08a7b586aabadbd755c4f37cee7af8e4 100644
(file)
--- 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;
}