1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-24 19:48:30 +00:00

3.5.312. Closes #20

This commit is contained in:
SirStendec 2016-10-04 15:06:45 -04:00
parent 26a55b169f
commit d12277776e
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
<div class="list-header">3.5.312 <time datetime="2016-10-03">(2016-10-04)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: Typo causing chat lines to not render correctly if a message is deleted.</li>
</ul>
<div class="list-header">3.5.311 <time datetime="2016-10-03">(2016-10-04)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Fixed: Opening sections of the FFZ settings menu could cause the page to scroll oddly in a way that's not easily fixed.</li>

View file

@ -903,7 +903,7 @@ FFZ.prototype._modify_chat_line = function(component, is_vod) {
if ( this.get('ffzShouldRenderMessageBody') ) {
output += this.buildSenderHTML();
output += this.get('msgObject.deleted') ?
this.buildDeletedMesageHTML() : this.buildMessageHTML();
this.buildDeletedMessageHTML() : this.buildMessageHTML();
}
el.innerHTML = output;

View file

@ -34,7 +34,7 @@ FFZ.msg_commands = {};
// Version
var VER = FFZ.version_info = {
major: 3, minor: 5, revision: 311,
major: 3, minor: 5, revision: 312,
toString: function() {
return [VER.major, VER.minor, VER.revision].join(".") + (VER.extra || "");
}