index.js (apache-openmeetings-6.1.0-src) | : | index.js (apache-openmeetings-6.2.0-src) | ||
---|---|---|---|---|
skipping to change at line 23 | skipping to change at line 23 | |||
, fixJQueryUIDialogTouch: function(dialog) { | , fixJQueryUIDialogTouch: function(dialog) { | |||
dialog.parent().find('.ui-dialog-titlebar-close').appendTo(dialog .parent()); | dialog.parent().find('.ui-dialog-titlebar-close').appendTo(dialog .parent()); | |||
} | } | |||
, showBusyIndicator: function() { | , showBusyIndicator: function() { | |||
$('#busy-indicator').show(); | $('#busy-indicator').show(); | |||
} | } | |||
, hideBusyIndicator: function() { | , hideBusyIndicator: function() { | |||
$('#busy-indicator').hide(); | $('#busy-indicator').hide(); | |||
} | } | |||
}); | }); | |||
function _updateResize() { | ||||
const doc = document.documentElement | ||||
doc.style.setProperty('--app-height', `${window.innerHeight}px`) | ||||
} | ||||
$(window).on('resize', _updateResize); | ||||
//initial resize | ||||
_updateResize(); | ||||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 0 lines changed or added |