snappymail/dev/Stores/Admin/Plugin.js

23 lines
331 B
JavaScript
Raw Normal View History

(function () {
'use strict';
var
ko = require('ko')
;
/**
* @constructor
*/
function PluginAdminStore()
{
2015-02-03 07:58:58 +08:00
this.plugins = ko.observableArray([]);
this.plugins.loading = ko.observable(false).extend({'throttle': 100});
this.plugins.error = ko.observable('');
}
module.exports = new PluginAdminStore();
}());