1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-10-15 07:21:58 +00:00
* Added: Show the FFZ menu button on new dashboard pages.
* Fixed: Synchronize settings with the `dashboard.twitch.tv` subdomain.
* Fixed: Performance issue with metadata tool-tips being calculated too frequently.
* Fixed: Metadata not appearing in theater mode when portrait mode is enabled.
* API Added: Chat Action types can now override rendering.
This commit is contained in:
SirStendec 2019-11-25 17:50:20 -05:00
parent 347919c51a
commit ff0f0ea074
14 changed files with 317 additions and 42 deletions

View file

@ -180,12 +180,14 @@ export class LocalStorageProvider extends SettingsProvider {
this._cached.set(key, value);
localStorage.setItem(this.prefix + key, JSON.stringify(value));
this.broadcast({type: 'set', key});
this.emit('set', key, value, false);
}
delete(key) {
this._cached.delete(key);
localStorage.removeItem(this.prefix + key);
this.broadcast({type: 'delete', key});
this.emit('set', key, undefined, true);
}
has(key) {