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() {