mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-16 12:45:16 +08:00
21 lines
289 B
JavaScript
21 lines
289 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
ko = require('ko')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
function DomainAdminStore()
|
|
{
|
|
this.domains = ko.observableArray([]);
|
|
this.domains.loading = ko.observable(false).extend({'throttle': 100});
|
|
}
|
|
|
|
module.exports = new DomainAdminStore();
|
|
|
|
}());
|