Index: lams_central/web/includes/javascript/progressBar.js =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/includes/javascript/progressBar.js,v diff -u -r1.8 -r1.9 --- lams_central/web/includes/javascript/progressBar.js 19 Sep 2013 07:57:33 -0000 1.8 +++ lams_central/web/includes/javascript/progressBar.js 4 Oct 2013 11:45:13 -0000 1.9 @@ -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 }); }