Place to store the code and config used for the next-Iterations live event. https://iterations.space/live/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
509 B

_kiwi.model.Server = _kiwi.model.Channel.extend({
initialize: function (attributes) {
var name = "Server";
this.view = new _kiwi.view.Channel({"model": this, "name": name});
this.set({
"scrollback": [],
"name": name
}, {"silent": true});
_kiwi.global.events.emit('panel:created', {panel: this});
},
isServer: function () {
return true;
},
isChannel: function () {
return false;
}
});