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.
 
 
 
 

22 lines
545 B

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