snappymail/dev/Stores/Admin/Plugin.js

23 lines
340 B
JavaScript
Raw Normal View History

(function () {
'use strict';
var
ko = require('ko')
;
/**
* @constructor
*/
function PluginAdminStore()
{
this.collection = ko.observableArray([]);
this.collection.loading = ko.observable(false).extend({'throttle': 100});
this.collection.error = ko.observable('');
}
module.exports = new PluginAdminStore();
}());