1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-21 13:30:54 +00:00

3.5.146. Tab completion for emotes.

This commit is contained in:
SirStendec 2016-03-26 16:09:36 -04:00
parent 5b784aa4f8
commit 46dee22d83
7 changed files with 875 additions and 146 deletions

View file

@ -346,6 +346,9 @@ FFZ.prototype.unload_set = function(set_id) {
if ( api && api.emote_sets && api.emote_sets[set_id] )
api.emote_sets[set_id] = undefined;
}
if ( this._inputv )
Ember.propertyDidChange(this._inputv, 'ffz_emoticons');
}
@ -407,6 +410,9 @@ FFZ.prototype._load_set_json = function(set_id, callback, data) {
this.update_ui_link();
if ( this._inputv )
Ember.propertyDidChange(this._inputv, 'ffz_emoticons');
if ( callback )
callback(true, data);
}