1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-02 16:08:31 +00:00

Expose more things on window.FrankerFaceZ.utilities. Fix a bug with JavaScript driven layout elements when the FFZ menu is fullscreened by not hiding those elements, only making them invisible and putting FFZ content on top.

This commit is contained in:
SirStendec 2017-11-13 16:28:17 -05:00
parent 720b875196
commit 2c39cd9051
6 changed files with 26 additions and 10 deletions

View file

@ -32,7 +32,7 @@ export const DefaultOptions = {
// Tooltip Class
// ============================================================================
export default class Tooltip {
export class Tooltip {
constructor(parent, cls, options) {
if ( typeof parent === 'string' )
parent = document.querySelector(parent);
@ -291,6 +291,8 @@ export default class Tooltip {
}
}
export default Tooltip;
// Function Intentionally Left Blank
function noop() { }