mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-25 12:21:26 +02: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
|
* @param _selected
|
||||||
*/
|
*/
|
||||||
AddressbookApp.prototype.videoconference_isUserOnline = function (_action, _selected) {
|
AddressbookApp.prototype.videoconference_isUserOnline = function (_action, _selected) {
|
||||||
|
if (egwIsMobile())
|
||||||
|
return false;
|
||||||
var list = app.status ? app.status.getEntireList() : {};
|
var list = app.status ? app.status.getEntireList() : {};
|
||||||
for (var sel in _selected) {
|
for (var sel in _selected) {
|
||||||
if (sel == '0' && _selected[sel]['id'] == 'nm')
|
if (sel == '0' && _selected[sel]['id'] == 'nm')
|
||||||
|
@ -1528,6 +1528,7 @@ class AddressbookApp extends EgwApp
|
|||||||
*/
|
*/
|
||||||
private videoconference_isUserOnline(_action, _selected)
|
private videoconference_isUserOnline(_action, _selected)
|
||||||
{
|
{
|
||||||
|
if (egwIsMobile()) return false;
|
||||||
let list = app.status ? app.status.getEntireList() : {};
|
let list = app.status ? app.status.getEntireList() : {};
|
||||||
for (let sel in _selected)
|
for (let sel in _selected)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user