1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-16 01:56:55 +00:00

Why, Twitch? Closes #16

This commit is contained in:
SirStendec 2016-10-04 12:06:49 -04:00
parent e3cf6cb777
commit 91e8cb5739
3 changed files with 10 additions and 1 deletions

View file

@ -916,6 +916,10 @@ FFZ.prototype._modify_chat_line = function(component, is_vod) {
return ! this.get('hasSystemMsg') || this.get('hasMessageBody');
}.property('hasSystemMsg', 'hasMessageBody'),
systemMsg: function() {
return this.get('msgObject.tags.system-msg')
}.property('msgObject.tags.system-msg'),
//shouldRenderMessageBody: function() {
// return false;
//}.property('hasSystemMsg', 'hasMessageBody'),

View file

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