mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 08:18:50 +00:00
18 lines
314 B
JavaScript
18 lines
314 B
JavaScript
|
|
import { M } from '../../lib/assets/materialize.js';
|
||
|
|
|
||
|
|
Template.cleanUp.onCreated(function() {
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.cleanUp.onRendered(function() {
|
||
|
|
var elems = document.querySelectorAll('.tooltipped');
|
||
|
|
var instances = M.Tooltip.init(elems, {});
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.cleanUp.helpers({
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.cleanUp.events({
|
||
|
|
|
||
|
|
});
|