projects
/
KiwiIRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f03204
)
Fix bug in StatusMessage#html
author
Jack Allnutt
<jack@allnutt.eu>
Sun, 4 Aug 2013 07:10:14 +0000
(08:10 +0100)
committer
Jack Allnutt
<jack@allnutt.eu>
Sun, 4 Aug 2013 07:10:14 +0000
(08:10 +0100)
client/assets/src/views/statusmessage.js
patch
|
blob
|
blame
|
history
diff --git
a/client/assets/src/views/statusmessage.js
b/client/assets/src/views/statusmessage.js
index fdd30f576e109d5b72fd5c9db17b8ce613157417..2decc914048585cbacbdf7a7d9b50074137f27e3 100644
(file)
--- a/
client/assets/src/views/statusmessage.js
+++ b/
client/assets/src/views/statusmessage.js
@@
-24,7
+24,7
@@
_kiwi.view.StatusMessage = Backbone.View.extend({
opt.type = opt.type || '';
opt.timeout = opt.timeout || 5000;
- this.$el.html(
text
).addClass(opt.type);
+ this.$el.html(
html
).addClass(opt.type);
this.$el.slideDown($.proxy(_kiwi.app.view.doLayout, _kiwi.app.view));
if (opt.timeout) this.doTimeout(opt.timeout);