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