Enable chat in OO apps

This commit is contained in:
yflory 2019-01-24 16:43:05 +01:00
parent ed4f8016a1
commit 56ff47af48
2 changed files with 4 additions and 2 deletions

View File

@ -750,6 +750,7 @@ define([
var configTb = { var configTb = {
displayed: [ displayed: [
'chat',
'userlist', 'userlist',
'title', 'title',
'useradmin', 'useradmin',
@ -827,8 +828,8 @@ define([
initializing = false; initializing = false;
setEditable(!readOnly); setEditable(!readOnly);
UI.removeLoadingScreen(); UI.removeLoadingScreen();
common.openPadChat(APP.onLocal);
}); });
}; };
config.onRemote = function () { config.onRemote = function () {

View File

@ -103,7 +103,8 @@ define([
SFCommonO.start({ SFCommonO.start({
type: 'oo', type: 'oo',
addData: addData, addData: addData,
addRpc: addRpc addRpc: addRpc,
messaging: true
}); });
}); });
}); });