mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-08 15:57:37 +08:00
23 lines
340 B
JavaScript
23 lines
340 B
JavaScript
|
|
||
|
(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();
|
||
|
|
||
|
}());
|