mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +01:00
* Addressbook/Mobile theme: fix opening contacts fails in mobile theme
This commit is contained in:
parent
8ffba9d400
commit
f4ea5b82cb
@ -1262,6 +1262,8 @@ var AddressbookApp = /** @class */ (function (_super) {
|
||||
* @param _selected
|
||||
*/
|
||||
AddressbookApp.prototype.videoconference_isUserOnline = function (_action, _selected) {
|
||||
if (egwIsMobile())
|
||||
return false;
|
||||
var list = app.status ? app.status.getEntireList() : {};
|
||||
for (var sel in _selected) {
|
||||
if (sel == '0' && _selected[sel]['id'] == 'nm')
|
||||
|
@ -1528,6 +1528,7 @@ class AddressbookApp extends EgwApp
|
||||
*/
|
||||
private videoconference_isUserOnline(_action, _selected)
|
||||
{
|
||||
if (egwIsMobile()) return false;
|
||||
let list = app.status ? app.status.getEntireList() : {};
|
||||
for (let sel in _selected)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user