1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-28 21:48:31 +00:00

Add settings support. Make FFZ menu modular. Add support for chat row styles. Add support for dark twitch (disabled). Add support for SRL races. Update SRL race dialog. Everything.

This commit is contained in:
SirStendec 2015-02-08 02:01:09 -05:00
parent c9bd39de8a
commit b284bd0f8d
15 changed files with 2313 additions and 190 deletions

View file

@ -228,7 +228,7 @@ FFZ.prototype._modify_room = function(room) {
// filteredSuggestions property of the chat-input component would
// be even better, but I was already hooking the room model.
var suggestions = this._super();
if ( localStorage.ffzCapitalize != 'false' )
if ( this.settings.capitalize )
suggestions = _.map(suggestions, FFZ.get_capitalization);
return suggestions;