mirror of
https://github.com/xevidos/codiad.git
synced 2024-11-10 21:26:35 +01:00
48 lines
931 B
JavaScript
Executable File
48 lines
931 B
JavaScript
Executable File
( function( global, $ ) {
|
|
|
|
var codiad = global.codiad;
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// User Alerts / Messages
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
codiad.message = {
|
|
|
|
init: function() {},
|
|
|
|
_showMessage: function(toastType, message, options) {
|
|
|
|
options = options || {};
|
|
options.text = message;
|
|
options.type = toastType
|
|
$().toastmessage('showToast', options);
|
|
},
|
|
|
|
success: function( m, options ) {
|
|
|
|
this._showMessage('success', m, options);
|
|
},
|
|
|
|
error: function( m, options ) {
|
|
|
|
this._showMessage('error', m, options);
|
|
},
|
|
|
|
warning: function( m, options ) {
|
|
|
|
this._showMessage('warning', m, options);
|
|
},
|
|
|
|
notice: function( m, options ) {
|
|
|
|
this._showMessage('notice', m, options);
|
|
},
|
|
|
|
hide: function() {
|
|
|
|
$(".toast-item-wrapper").remove();
|
|
}
|
|
};
|
|
|
|
})( this, jQuery );
|