18 lines
325 B
JavaScript
Executable File
18 lines
325 B
JavaScript
Executable File
var Backbone = require('backbone');
|
|
|
|
/**
|
|
* Model for general editor configuration.
|
|
*/
|
|
module.exports = Backbone.Model.extend({
|
|
defaults: {
|
|
edition: false,
|
|
disabled: false
|
|
},
|
|
isEditing: function () {
|
|
return !!this.get('edition');
|
|
},
|
|
isDisabled: function () {
|
|
return !!this.get('disabled');
|
|
}
|
|
});
|