Index: lams_central/web/includes/javascript/progressBar.js =================================================================== diff -u -r9b3d8eb1300d18aad5becbc356d47a598f1bff36 -r10b19e832ff61386b5cd9dac44ebcfe3c246aee3 --- lams_central/web/includes/javascript/progressBar.js (.../progressBar.js) (revision 9b3d8eb1300d18aad5becbc356d47a598f1bff36) +++ lams_central/web/includes/javascript/progressBar.js (.../progressBar.js) (revision 10b19e832ff61386b5cd9dac44ebcfe3c246aee3) @@ -2,6 +2,7 @@ // IMPORTANT: set following variables on the page which imports this JS file var isHorizontalBar = isHorizontalBar || false; var hasContentFrame = hasContentFrame || true; +var isTouchInterface = isTouchInterface || false; var hasDialog = hasDialog || false; var presenceEnabled = presenceEnabled || false; var REVIEW_ACTIVITY_TITLE = REVIEW_ACTIVITY_TITLE || 'Review activity'; @@ -106,10 +107,11 @@ if (hasContentFrame) { // resize main content frame, if it is present + var position = (isTouchInterface) ? 'static' : 'fixed'; $('#contentFrame').css({ 'width' : width + "px", 'height' : height + "px", - 'position' : 'fixed' + 'position' : position }); }