Client: #toolbar change to .toolbar
[KiwiIRC.git] / client / assets / dev / model_server.js
1 _kiwi.model.Server = _kiwi.model.Panel.extend({
2 // Used to determine if this is a server panel
3 server: true,
4
5 initialize: function (attributes) {
6 var name = "Server";
7 this.view = new _kiwi.view.Panel({"model": this, "name": name});
8 this.set({
9 "scrollback": [],
10 "name": name
11 }, {"silent": true});
12
13 //this.addMsg(' ', '--> Kiwi IRC: Such an awesome IRC client', '', {style: 'color:#009900;'});
14 }
15 });