Home Reference Source

application/util/toast.js


/**
 * Just fire a tost event
 * @param  {string} message
 */
const toast = function(message) {
    Materialize.toast(message, 4000);
    return;
};

export {toast};