%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/assets/6fd3b69d/js/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/assets/6fd3b69d/js/humhub.live.js |
humhub.module('live', function (module, require, $) {
var object = require('util').object;
var liveClient;
var init = function () {
if (!module.config.isActive) {
return;
}
try {
var clientType = require(module.config.client.type);
if (clientType) {
liveClient = new clientType(module.config.client.options);
} else {
module.log.warn("Invalid live client configuration detected, live client could not be initialized.", module.config);
}
} catch (e) {
module.log.warn("Invalid live client configuration detected, live client could not be initialized.", module.config);
module.log.error(e);
}
};
var setDelay = function (value) {
if (object.isFunction(liveClient.setDelay)) {
liveClient.setDelay(value);
}
};
module.export({
init: init,
setDelay: setDelay
});
});