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

3.5.190. Minor CSS tweaks. Case insensitive emote tab completion. Fix the new sidebar in portrait mode.

This commit is contained in:
SirStendec 2016-05-27 00:59:03 -04:00
parent 2cb07d6c78
commit 57a95986d3
5 changed files with 43 additions and 8 deletions

View file

@ -133,6 +133,18 @@ FFZ.settings_info.input_complete_name_at = {
}
FFZ.settings_info.input_emoticons_case_sensitive = {
type: "boolean",
value: true,
category: "Chat Input",
no_bttv: true,
name: "Tab-Complete Emoticons Case Sensitive",
help: "When enabled, tab-completion for emoticons is case sensitive."
}
FFZ.settings_info.input_complete_without_prefix = {
type: "boolean",
value: true,
@ -169,7 +181,7 @@ FFZ.settings_info.input_emoji = {
FFZ.prototype.setup_chat_input = function() {
this.log("Hooking the Ember Chat Input component.");
var Input = utils.ember_resolve('component:twitch-chat-input'),
var Input = utils.ember_resolve('component:chat/twitch-chat-input'),
f = this;
if ( ! Input )
@ -698,7 +710,7 @@ FFZ.prototype._modify_chat_input = function(component) {
name = name.toLowerCase();
return char === '@' ? name.indexOf(part2.toLowerCase()) === 0 : name.indexOf(partial.toLowerCase()) === 0;
} else if ( type === 'emoji' ) {
} else if ( type === 'emoji' || ! f.settings.input_emoticons_case_sensitive ) {
name = name.toLowerCase();
return name.indexOf(partial.toLowerCase()) === 0;
}