mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-28 05:15:54 +00:00
3.5.382. Fix bits breaking chat again. Hopefully bits are somewhat more hardened against Twitch randomly making a minor change that breaks everything now. But probably not.
This commit is contained in:
parent
d7000f2f06
commit
875e15fde2
3 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
<div class="list-header">3.5.382 <time datetime="2016-11-28">(2016-11-28)</time></div>
|
||||||
|
<ul class="chat-menu-content menu-side-padding">
|
||||||
|
<li>Fixed: Bits breaking chat.</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<div class="list-header">3.5.381 <time datetime="2016-11-28">(2016-11-28)</time></div>
|
<div class="list-header">3.5.381 <time datetime="2016-11-28">(2016-11-28)</time></div>
|
||||||
<ul class="chat-menu-content menu-side-padding">
|
<ul class="chat-menu-content menu-side-padding">
|
||||||
<li>Added: Setting to make mentions clickable. They open moderation cards. (Note: Only at signs (<code>@</code>) followed by usernames are clickable. Localized display names will not work.)</li>
|
<li>Added: Setting to make mentions clickable. They open moderation cards. (Note: Only at signs (<code>@</code>) followed by usernames are clickable. Localized display names will not work.)</li>
|
||||||
|
|
|
@ -157,8 +157,8 @@ FFZ.prototype.setup_bits = function() {
|
||||||
|
|
||||||
for(var i=0; i < config.prefixes.length; i++) {
|
for(var i=0; i < config.prefixes.length; i++) {
|
||||||
var prefix = config.prefixes[i],
|
var prefix = config.prefixes[i],
|
||||||
data = config[prefix],
|
data = this._getConfigPrefix(prefix),
|
||||||
tiers = data && data.tiers;
|
tiers = data && data.tiers || [];
|
||||||
|
|
||||||
for(var x=0; x < tiers.length; x++)
|
for(var x=0; x < tiers.length; x++)
|
||||||
output.push(this._ffz_tier_css(x, prefix, tiers[x]));
|
output.push(this._ffz_tier_css(x, prefix, tiers[x]));
|
||||||
|
|
|
@ -61,7 +61,7 @@ FFZ.channel_metadata = {};
|
||||||
|
|
||||||
// Version
|
// Version
|
||||||
var VER = FFZ.version_info = {
|
var VER = FFZ.version_info = {
|
||||||
major: 3, minor: 5, revision: 381,
|
major: 3, minor: 5, revision: 382,
|
||||||
toString: function() {
|
toString: function() {
|
||||||
return [VER.major, VER.minor, VER.revision].join(".") + (VER.extra || "");
|
return [VER.major, VER.minor, VER.revision].join(".") + (VER.extra || "");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue