Merge branch 'release/v5.5.0' into feature/mobile-opensource

This commit is contained in:
Maxim Kadushkin 2020-02-11 13:02:10 +03:00
commit 095249939f

View file

@ -118,6 +118,13 @@ define([
if ( !!obj.action ) {
titlebuttons[obj.action].btn.click();
}
} else
if (/element:show/.test(cmd)) {
var _mr = /title:(?:(true|show)|(false|hide))/.exec(param);
if ( _mr ) {
if (!!_mr[1]) $('#app-title').show();
else if (!!_mr[2]) $('#app-title').hide();
}
}
};
@ -246,4 +253,4 @@ define([
};
Common.Controllers.Desktop = new Desktop();
});
});