Index: lams_central/web/css/index.css =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/css/index.css,v diff -u -r1.14 -r1.15 --- lams_central/web/css/index.css 16 Jun 2015 08:22:50 -0000 1.14 +++ lams_central/web/css/index.css 9 Jul 2015 14:38:27 -0000 1.15 @@ -24,6 +24,7 @@ .dialogContainer { display: none; + -webkit-overflow-scrolling: touch !important; } .dialogContainer iframe { Index: lams_central/web/includes/javascript/groupDisplay.js =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/includes/javascript/groupDisplay.js,v diff -u -r1.44 -r1.45 --- lams_central/web/includes/javascript/groupDisplay.js 9 Jun 2015 20:14:20 -0000 1.44 +++ lams_central/web/includes/javascript/groupDisplay.js 9 Jul 2015 14:38:27 -0000 1.45 @@ -197,6 +197,14 @@ .attr('src', LAMS_URL + 'home.do?method=addLesson&organisationID=' + $(this).dialog('option', 'orgID')); + + //in case of mobile devices allow iframe scrolling + if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) { + setTimeout(function() { + $('.dialogContainer').css('overflow-y','scroll'); + $('.dialogContainer').css('-webkit-overflow-scrolling','touch'); + },500); + } } }); }