RSS Git Download  Clone
Raw View History
Blames found: 4 Mode: javascript Binary: false


Hang on, we reloading big blames...
global.p3xre.ng.factory('p3xToast', ($mdToast) => { const toast = (options) => { if (typeof options === 'string') { options = { message: options, } } $mdToast.show( $mdToast.simple() .textContent(options.message) .position('bottom right') .hideDelay(10000) ); }
return new function () {
this.action = toast; }
})