Fixed device events not selected.

This commit is contained in:
Ylian Saint-Hilaire 2019-04-09 17:37:31 -07:00
parent 2737cb83eb
commit 4bb307c635
3 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "meshcentral", "name": "meshcentral",
"version": "0.3.1-z", "version": "0.3.2-b",
"keywords": [ "keywords": [
"Remote Management", "Remote Management",
"Intel AMT", "Intel AMT",

File diff suppressed because one or more lines are too long

View File

@ -7510,21 +7510,22 @@
QC('column_l').remove('room4submenu'); QC('column_l').remove('room4submenu');
} }
// Jovan, please check. I think this part is not needed anymore. Removing class will revert to default style // Please check. I think this part is not needed anymore. Removing class will revert to default style
/* /*
if ((x == 0) && (webPageFullScreen)) { if ((x == 0) && (webPageFullScreen)) {
QS('page_content').position = ''; QS('page_content').position = '';
QV('page_leftbar', false); QV('page_leftbar', false);
QS('column_l').height = 'calc(100vh - 110px)'; QS('column_l').height = 'calc(100vh - 110px)';
QS('column_l')["max-height"] = ''; QS('column_l')["max-height"] = '';
} */ }
*/
QV('MainSubMenuSpan', x >= 10 && x < 20); QV('MainSubMenuSpan', x >= 10 && x < 20);
QV('UserDummyMenuSpan', (x < 10) && (x != 6) && webPageFullScreen); QV('UserDummyMenuSpan', (x < 10) && (x != 6) && webPageFullScreen);
QV('MeshSubMenuSpan', x >= 20 && x < 30); QV('MeshSubMenuSpan', x >= 20 && x < 30);
QV('UserSubMenuSpan', x >= 30 && x < 40); QV('UserSubMenuSpan', x >= 30 && x < 40);
QV('ServerSubMenuSpan', x == 6 || x == 115 || x == 40); QV('ServerSubMenuSpan', x == 6 || x == 115 || x == 40);
var panels = { 10: 'MainDev', 11: 'MainDevDesktop', 12: 'MainDevTerminal', 13: 'MainDevFiles', 14: 'MainDevAmt', 15: 'MainDevConsole', 20: 'MeshGeneral', 30: 'UserGeneral', 31: 'UserEvents', 6: 'ServerGeneral', 40: 'ServerStats', 115: 'ServerConsole' }; var panels = { 10: 'MainDev', 11: 'MainDevDesktop', 12: 'MainDevTerminal', 13: 'MainDevFiles', 14: 'MainDevAmt', 15: 'MainDevConsole', 16: 'MainDevEvents', 20: 'MeshGeneral', 30: 'UserGeneral', 31: 'UserEvents', 6: 'ServerGeneral', 40: 'ServerStats', 115: 'ServerConsole' };
for (var i in panels) { for (var i in panels) {
QC(panels[i]).remove('style3x'); QC(panels[i]).remove('style3x');
QC(panels[i]).remove('style3sel'); QC(panels[i]).remove('style3sel');