snappymail/dev/Stores/Admin/Domain.js

22 lines
295 B
JavaScript
Raw Normal View History

(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();
}());