Fix favorite emote removing
This commit is contained in:
parent
ddbaf290b3
commit
c0f8c43f1b
58
js/main.js
58
js/main.js
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
|
|
||||||
var settingsPanel, emoteModule, utils, quickEmoteMenu, opublicServers, voiceMode, pluginModule, themeModule;
|
var settingsPanel, emoteModule, utils, quickEmoteMenu, opublicServers, voiceMode, pluginModule, themeModule;
|
||||||
var jsVersion = 1.54;
|
var jsVersion = 1.55;
|
||||||
var supportedVersion = "0.2.3";
|
var supportedVersion = "0.2.3";
|
||||||
|
|
||||||
var mainObserver;
|
var mainObserver;
|
||||||
|
@ -64,12 +64,17 @@ var defaultCookie = {
|
||||||
|
|
||||||
var bdchangelog = {
|
var bdchangelog = {
|
||||||
"changes": {
|
"changes": {
|
||||||
"favemotes": {
|
"core": {
|
||||||
"title": "Favorite Emotes!",
|
"title": "Core 0.2.5",
|
||||||
"text": "You can now favorite emotes and have them listed in the quick emote menu!",
|
"text": "Core v0.2.5 has been made more universal. Download the latest from <a href='https://betterdiscord.net' target='_blank'>https://betterdiscord.net</a> ).",
|
||||||
"img": ""
|
"img": ""
|
||||||
},
|
},
|
||||||
"plugins": {
|
"plugins": {
|
||||||
|
"title": "Plugin Settings!",
|
||||||
|
"text": "Plugins can now add their own settings panel!",
|
||||||
|
"img": ""
|
||||||
|
},
|
||||||
|
"plugins2": {
|
||||||
"title": "Plugins!",
|
"title": "Plugins!",
|
||||||
"text": "Combined with Core 0.2.3, you can now write JavaScript plugins for Discord!",
|
"text": "Combined with Core 0.2.3, you can now write JavaScript plugins for Discord!",
|
||||||
"img": ""
|
"img": ""
|
||||||
|
@ -79,6 +84,11 @@ var bdchangelog = {
|
||||||
"text": "New and improved settings menu!",
|
"text": "New and improved settings menu!",
|
||||||
"img": ""
|
"img": ""
|
||||||
},
|
},
|
||||||
|
"qemotemenu": {
|
||||||
|
"title": "Quick emote menu!",
|
||||||
|
"text": "Quick emote menu now closes when you click anywhere else and you can favorite twitch global emotes!",
|
||||||
|
"img": ""
|
||||||
|
},
|
||||||
"csseditor": {
|
"csseditor": {
|
||||||
"title": "New CSS Editor!",
|
"title": "New CSS Editor!",
|
||||||
"text": "New CSS Editor powered by <a href='http://codemirror.net' target='_blank'>CodeMirror!</a>",
|
"text": "New CSS Editor powered by <a href='http://codemirror.net' target='_blank'>CodeMirror!</a>",
|
||||||
|
@ -101,6 +111,11 @@ var bdchangelog = {
|
||||||
"text": "Edited messages now display emotes properly!",
|
"text": "Edited messages now display emotes properly!",
|
||||||
"img": ""
|
"img": ""
|
||||||
},
|
},
|
||||||
|
"femotes": {
|
||||||
|
"title": "Favorite Emotes!",
|
||||||
|
"test": "Favorite emotes right click now always works!",
|
||||||
|
"img": ""
|
||||||
|
},
|
||||||
"pservers": {
|
"pservers": {
|
||||||
"title": "Public Servers",
|
"title": "Public Servers",
|
||||||
"text": "Public servers have been fixed!",
|
"text": "Public servers have been fixed!",
|
||||||
|
@ -117,21 +132,6 @@ var bdchangelog = {
|
||||||
"title": "Ignore User!",
|
"title": "Ignore User!",
|
||||||
"text": "Ignore users you don't like!",
|
"text": "Ignore users you don't like!",
|
||||||
"img": ""
|
"img": ""
|
||||||
},
|
|
||||||
"themes": {
|
|
||||||
"title": "Custom themes!",
|
|
||||||
"text": "Write your own or download custom themes!",
|
|
||||||
"img": ""
|
|
||||||
},
|
|
||||||
"favemotes": {
|
|
||||||
"title": "Favorite emotes!",
|
|
||||||
"text": "Add your favorite emote(s) to the quick emote menu!",
|
|
||||||
"img": ""
|
|
||||||
},
|
|
||||||
"more": {
|
|
||||||
"title": "More Things!",
|
|
||||||
"text": "More things but probably not in the next version!",
|
|
||||||
"img": ""
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -482,7 +482,9 @@ EmoteModule.prototype.injectEmote = function(node) {
|
||||||
|
|
||||||
if (emotesTwitch.emotes.hasOwnProperty(word)) {
|
if (emotesTwitch.emotes.hasOwnProperty(word)) {
|
||||||
var len = Math.round(word.length / 4);
|
var len = Math.round(word.length / 4);
|
||||||
parentInnerHTML = parentInnerHTML.replace(word, '<img class="emote" alt="' + word.substr(0, len) + "\uFDD9" + word.substr(len, len) + "\uFDD9" + word.substr(len * 2, len) + "\uFDD9" + word.substr(len * 3) + '" src="' + twitchEmoteUrlStart + emotesTwitch.emotes[word].image_id + twitchEmoteUrlEnd + '" />');
|
var name = word.substr(0, len) + "\uFDD9" + word.substr(len, len) + "\uFDD9" + word.substr(len * 2, len) + "\uFDD9" + word.substr(len * 3);
|
||||||
|
var url = twitchEmoteUrlStart + emotesTwitch.emotes[word].image_id + twitchEmoteUrlEnd;
|
||||||
|
parentInnerHTML = parentInnerHTML.replace(word, '<div class="emotewrapper"><img class="emote" alt="' + name + '" src="' + url + '" /><input onclick=\'quickEmoteMenu.favorite(\"'+name+'\", \"'+url+'\");\' class="fav" title="Favorite!" type="button"></div>');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -762,7 +764,6 @@ QuickEmoteMenu.prototype.init = function(reload) {
|
||||||
|
|
||||||
var menuOpen;
|
var menuOpen;
|
||||||
|
|
||||||
|
|
||||||
emoteBtn = $("<div/>", { id:"twitchcord-button-container", style:"display:none" }).append($("<button/>", { id: "twitchcord-button", onclick: "return false;" }));
|
emoteBtn = $("<div/>", { id:"twitchcord-button-container", style:"display:none" }).append($("<button/>", { id: "twitchcord-button", onclick: "return false;" }));
|
||||||
|
|
||||||
$(".content.flex-spacer.flex-horizontal .flex-spacer.flex-vertical form").append(emoteBtn);
|
$(".content.flex-spacer.flex-horizontal .flex-spacer.flex-vertical form").append(emoteBtn);
|
||||||
|
@ -885,13 +886,6 @@ QuickEmoteMenu.prototype.initEmoteList = function() {
|
||||||
|
|
||||||
QuickEmoteMenu.prototype.favorite = function(name, url) {
|
QuickEmoteMenu.prototype.favorite = function(name, url) {
|
||||||
|
|
||||||
if(!$("#rmenu").length) {
|
|
||||||
$("body").append('<div id="rmenu"><ul><a href="#">Remove</a></ul></div>');
|
|
||||||
$(document).on("click", function() {
|
|
||||||
$("#rmenu").hide();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if(!favoriteEmotes.hasOwnProperty(name)) {
|
if(!favoriteEmotes.hasOwnProperty(name)) {
|
||||||
favoriteEmotes[name] = url;
|
favoriteEmotes[name] = url;
|
||||||
}
|
}
|
||||||
|
@ -901,6 +895,13 @@ QuickEmoteMenu.prototype.favorite = function(name, url) {
|
||||||
|
|
||||||
QuickEmoteMenu.prototype.updateFavorites = function() {
|
QuickEmoteMenu.prototype.updateFavorites = function() {
|
||||||
|
|
||||||
|
if(!$("#rmenu").length) {
|
||||||
|
$("body").append('<div id="rmenu"><ul><a href="#">Remove</a></ul></div>');
|
||||||
|
$(document).on("click", function() {
|
||||||
|
$("#rmenu").hide();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
var self = this;
|
var self = this;
|
||||||
var emoteMenuBody = $("#emote-menu-inner-fav");
|
var emoteMenuBody = $("#emote-menu-inner-fav");
|
||||||
emoteMenuBody.empty();
|
emoteMenuBody.empty();
|
||||||
|
@ -917,6 +918,7 @@ QuickEmoteMenu.prototype.updateFavorites = function() {
|
||||||
ta.val(ta.val().slice(-1) == " " ? ta.val() + emote : ta.val() + " " + emote);
|
ta.val(ta.val().slice(-1) == " " ? ta.val() + emote : ta.val() + " " + emote);
|
||||||
});
|
});
|
||||||
icon.off("contextmenu").on("contextmenu", function(e) {
|
icon.off("contextmenu").on("contextmenu", function(e) {
|
||||||
|
console.log("IT'S HAPPENING!");
|
||||||
var title = $(this).attr("title");
|
var title = $(this).attr("title");
|
||||||
var menu = $("#rmenu");
|
var menu = $("#rmenu");
|
||||||
menu.find("a").off("click").on("click",function() {
|
menu.find("a").off("click").on("click",function() {
|
||||||
|
|
Loading…
Reference in New Issue