projects
/
KiwiIRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dabf8ed
)
Fix createQuery
author
Cory Chaplin
<cory.chaplin@laposte.net>
Wed, 16 Jul 2014 09:24:51 +0000
(11:24 +0200)
committer
Cory Chaplin
<cory.chaplin@laposte.net>
Wed, 16 Jul 2014 09:24:51 +0000
(11:24 +0200)
client/src/models/network.js
patch
|
blob
|
blame
|
history
diff --git
a/client/src/models/network.js
b/client/src/models/network.js
index 13d0359765249147ce1111a352077ba23b3fca21..0fb5fa72547ecef136a4d7ad8382883e3a32f098 100644
(file)
--- a/
client/src/models/network.js
+++ b/
client/src/models/network.js
@@
-238,7
+238,7
@@
// Create a new query panel
createQuery: function (nick) {
var that = this,
-
panels = []
;
+
query
;
// Check if we have the panel already. If not, create it
query = that.panels.getByName(nick);
@@
-248,7
+248,7
@@
}
// In all cases, show the demanded query
-
that.panels.getByName(nick)
.view.show();
+
query
.view.show();
}
});