1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-28 15:27:43 +00:00

Start using the new badges API to load badge data. Option to hide whisper UI in theater mode. Channel Feed on Dashboard UI.

This commit is contained in:
SirStendec 2016-04-16 17:45:25 -04:00
parent 21d1ce0d8f
commit d6b1b215d9
10 changed files with 407 additions and 35 deletions

View file

@ -467,5 +467,14 @@ module.exports = FFZ.utils = {
return "" + count;
},
escape_regex: escape_regex
escape_regex: escape_regex,
createElement: function(tag, className, content) {
var out = document.createElement(tag);
if ( className )
out.className = className;
if ( content )
out.innerHTML = content;
return out;
}
}