cartodb-4.42/lib/assets/javascripts/dashboard/data/flash-message-model.js
2024-04-06 05:25:13 +00:00

26 lines
454 B
JavaScript

const Backbone = require('backbone');
module.exports = Backbone.Model.extend({
defaults: {
msg: '',
type: 'error',
display: false
},
shouldDisplay: function () {
return this.get('display') && !!this.get('msg') && !!this.get('type');
},
show: function (message, type) {
return this.set({
display: true,
msg: message,
type: type
});
},
hide: function () {
this.set('display', false);
}
});