snappymail/dev/Stores/Admin/Plugin.js
2015-02-03 05:56:26 +04:00

23 lines
331 B
JavaScript

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