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

3.5.172. Following tooltip now shows Creative hashtags. Bug fixes. Added several sidebar options.

This commit is contained in:
SirStendec 2016-05-12 00:11:50 -04:00
parent 8056463bbe
commit 78fddccbb5
11 changed files with 315 additions and 143 deletions

View file

@ -489,5 +489,10 @@ module.exports = FFZ.utils = {
if ( content )
out.innerHTML = content;
return out;
},
toggle_cls: function(cls) {
var cl = document.body.classList;
return cl.toggle.bind(cl, cls);
}
}