mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-28 15:27:43 +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>
|
||||
<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>
|
||||
|
|
|
@ -157,8 +157,8 @@ FFZ.prototype.setup_bits = function() {
|
|||
|
||||
for(var i=0; i < config.prefixes.length; i++) {
|
||||
var prefix = config.prefixes[i],
|
||||
data = config[prefix],
|
||||
tiers = data && data.tiers;
|
||||
data = this._getConfigPrefix(prefix),
|
||||
tiers = data && data.tiers || [];
|
||||
|
||||
for(var x=0; x < tiers.length; x++)
|
||||
output.push(this._ffz_tier_css(x, prefix, tiers[x]));
|
||||
|
|
|
@ -61,7 +61,7 @@ FFZ.channel_metadata = {};
|
|||
|
||||
// Version
|
||||
var VER = FFZ.version_info = {
|
||||
major: 3, minor: 5, revision: 381,
|
||||
major: 3, minor: 5, revision: 382,
|
||||
toString: function() {
|
||||
return [VER.major, VER.minor, VER.revision].join(".") + (VER.extra || "");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue