mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 23:38:14 +08:00
24 lines
389 B
JavaScript
24 lines
389 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
ko = require('ko')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
function PackageAdminStore()
|
|
{
|
|
this.packages = ko.observableArray([]);
|
|
this.packages.loading = ko.observable(false).extend({'throttle': 100});
|
|
|
|
this.packagesReal = ko.observable(true);
|
|
this.packagesMainUpdatable = ko.observable(true);
|
|
}
|
|
|
|
module.exports = new PackageAdminStore();
|
|
|
|
}());
|