mirror of https://github.com/calzoneman/sync.git
Compare commits
3 Commits
2cd356bfa6
...
28acef8fdb
Author | SHA1 | Date |
---|---|---|
dependabot[bot] | 28acef8fdb | |
Honore Doktorr | adc0ea27a9 | |
Calvin Montgomery | 4c437efb5d |
|
@ -18,7 +18,12 @@ window.DailymotionPlayer = class DailymotionPlayer extends Player
|
||||||
if quality != 'auto'
|
if quality != 'auto'
|
||||||
params.quality = quality
|
params.quality = quality
|
||||||
|
|
||||||
@dm = DM.player('ytapiplayer',
|
@element = DM.$('ytapiplayer')
|
||||||
|
if not @element or @element.nodeType != Node.ELEMENT_NODE
|
||||||
|
throw new Error("Invalid player element in DailymotionPlayer(), requires an existing HTML element: " + @element)
|
||||||
|
if DM.Player._INSTANCES[@element.id] != undefined
|
||||||
|
@element = DM.Player.destroy(@element.id)
|
||||||
|
@dm = DM.Player.create(@element,
|
||||||
video: data.id
|
video: data.id
|
||||||
width: parseInt(VWIDTH, 10)
|
width: parseInt(VWIDTH, 10)
|
||||||
height: parseInt(VHEIGHT, 10)
|
height: parseInt(VHEIGHT, 10)
|
||||||
|
|
|
@ -2702,8 +2702,7 @@ function execEmotes(msg) {
|
||||||
}
|
}
|
||||||
|
|
||||||
CHANNEL.emotes.forEach(function (e) {
|
CHANNEL.emotes.forEach(function (e) {
|
||||||
msg = msg.replace(e.regex, '$1<img class="channel-emote" src="' +
|
msg = msg.replace(e.regex, '$1' + emoteToImg(e).outerHTML);
|
||||||
e.image + '" title="' + e.name + '">');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return msg;
|
return msg;
|
||||||
|
@ -2711,13 +2710,12 @@ function execEmotes(msg) {
|
||||||
|
|
||||||
function execEmotesEfficient(msg) {
|
function execEmotesEfficient(msg) {
|
||||||
CHANNEL.badEmotes.forEach(function (e) {
|
CHANNEL.badEmotes.forEach(function (e) {
|
||||||
msg = msg.replace(e.regex, '$1<img class="channel-emote" src="' +
|
msg = msg.replace(e.regex, '$1' + emoteToImg(e).outerHTML);
|
||||||
e.image + '" title="' + e.name + '">');
|
|
||||||
});
|
});
|
||||||
msg = msg.replace(/[^\s]+/g, function (m) {
|
msg = msg.replace(/[^\s]+/g, function (m) {
|
||||||
if (CHANNEL.emoteMap.hasOwnProperty(m)) {
|
if (CHANNEL.emoteMap.hasOwnProperty(m)) {
|
||||||
var e = CHANNEL.emoteMap[m];
|
var e = CHANNEL.emoteMap[m];
|
||||||
return '<img class="channel-emote" src="' + e.image + '" title="' + e.name + '">';
|
return emoteToImg(e).outerHTML;
|
||||||
} else {
|
} else {
|
||||||
return m;
|
return m;
|
||||||
}
|
}
|
||||||
|
@ -2725,6 +2723,14 @@ function execEmotesEfficient(msg) {
|
||||||
return msg;
|
return msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function emoteToImg(e) {
|
||||||
|
var img = document.createElement('img');
|
||||||
|
img.className = 'channel-emote';
|
||||||
|
img.title = e.name;
|
||||||
|
img.src = e.image;
|
||||||
|
return img;
|
||||||
|
}
|
||||||
|
|
||||||
function initPm(user) {
|
function initPm(user) {
|
||||||
if ($("#pm-" + user).length > 0) {
|
if ($("#pm-" + user).length > 0) {
|
||||||
return $("#pm-" + user);
|
return $("#pm-" + user);
|
||||||
|
|
Loading…
Reference in New Issue