1
0
mirror of https://github.com/moodle/moodle.git synced 2025-05-09 17:55:45 +02:00

MDL-28975 question engine, JavaScript error in IE.

This commit is contained in:
Tim Hunt 2011-08-17 13:51:01 +01:00
parent 4f3632441a
commit a40d411e74

@ -92,7 +92,7 @@ M.core_scroll_manager.scroll_to_saved_pos = function(Y) {
// And the following horror is necessary to make it work in IE 8. // And the following horror is necessary to make it work in IE 8.
// Note that the class ie8 on body is only there in Moodle 2.0 and OU Moodle. // Note that the class ie8 on body is only there in Moodle 2.0 and OU Moodle.
if (Y.one('body').hasClass('ie')) { if (Y.one('body').hasClass('ie')) {
M.core_scroll_manager.force_ie_to_scroll(matches[1]) M.core_scroll_manager.force_ie_to_scroll(Y, matches[1])
} }
} }
} }
@ -101,7 +101,7 @@ M.core_scroll_manager.scroll_to_saved_pos = function(Y) {
* Beat IE into submission. * Beat IE into submission.
* @param targetpos the target scroll position. * @param targetpos the target scroll position.
*/ */
M.core_scroll_manager.force_ie_to_scroll = function(targetpos) { M.core_scroll_manager.force_ie_to_scroll = function(Y, targetpos) {
var hackcount = 25; var hackcount = 25;
function do_scroll() { function do_scroll() {
window.scrollTo(0, targetpos); window.scrollTo(0, targetpos);