RSS Git Download  Clone
Raw Blame History
global.p3x.onenote.ng.factory('p3xOnenoteToast', ($mdToast) => {

    const toast = (options) => {
        if (typeof options === 'string') {
            options = {
                text: options,
            }
        }
        $mdToast.show(
            $mdToast.simple()
                .textContent(options.text)
                .position('bottom right')
                .hideDelay(3000)
        );
    }

    return new function() {
        this.setProxy = new function() {
            this.clear = () => toast(p3x.onenote.lang.dialog.setProxy.clear)
            this.set = (value) => toast(p3x.onenote.lang.dialog.setProxy.set(value))
        }
    }
})