denniss17/pimatic-angular-material-frontend

View on GitHub
app/services/toast.js

Summary

Maintainability
A
0 mins
Test Coverage
angular.module('pimaticApp.services').factory('toast', [
    '$mdToast',
    function ($mdToast) {
        return {
            show: function (message) {
                $mdToast.show($mdToast.simple().content(message));
            },

            error: function (message) {
                $mdToast.show($mdToast.simple().content(message));
            }
        };
    }
]);