cartodb/lib/assets/javascripts/dashboard/data/flash-message-model.js

26 lines
454 B
JavaScript
Raw Normal View History

2020-06-15 10:58:47 +08:00
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);
}
});