cartodb-4.42/lib/assets/javascripts/cartodb/common/flash_message_model.js

28 lines
446 B
JavaScript
Raw Normal View History

2024-04-06 13:25:13 +08:00
var cdb = require('cartodb.js-v3');
module.exports = cdb.core.Model.extend({
defaults: {
msg: '',
type: 'error',
display: false
},
shouldDisplay: function () {
return this.get('display') && !!this.get('msg') && !!this.get('type');
},
show: function (str, type) {
return this.set({
display: true,
msg: str,
type: type
});
},
hide: function () {
this.set('display', false);
}
});