| 1234567891011121314151617181920212223242526272829303132 |
- var abp = abp || {};
- (function () {
- if (!toastr) {
- return;
- }
- /* DEFAULTS *************************************************/
- toastr.options.positionClass = 'toast-bottom-right';
- /* NOTIFICATION *********************************************/
- var showNotification = function (type, message, title, options) {
- toastr[type](message, title, options);
- };
- abp.notify.success = function (message, title, options) {
- showNotification('success', message, title, options);
- };
- abp.notify.info = function (message, title, options) {
- showNotification('info', message, title, options);
- };
- abp.notify.warn = function (message, title, options) {
- showNotification('warning', message, title, options);
- };
- abp.notify.error = function (message, title, options) {
- showNotification('error', message, title, options);
- };
- })();
|