MDL-37844 SCORM: fix js error and highlight selected node in TOC.

This commit is contained in:
Dan Marsden 2013-04-04 21:03:10 +13:00
parent 422f68fb86
commit c848280ad8

View File

@ -24,6 +24,7 @@
mod_scorm_launch_next_sco = null; mod_scorm_launch_next_sco = null;
mod_scorm_launch_prev_sco = null; mod_scorm_launch_prev_sco = null;
mod_scorm_activate_item = null; mod_scorm_activate_item = null;
scorm_layout_widget = null;
M.mod_scorm = {}; M.mod_scorm = {};
@ -41,7 +42,6 @@ M.mod_scorm.init = function(Y, hide_nav, hide_toc, toc_title, window_name, launc
} }
scoes_nav = JSON.parse(scoes_nav); scoes_nav = JSON.parse(scoes_nav);
var scorm_layout_widget;
var scorm_current_node; var scorm_current_node;
var scorm_buttons = []; var scorm_buttons = [];
var scorm_bloody_labelclick = false; var scorm_bloody_labelclick = false;
@ -152,7 +152,7 @@ M.mod_scorm.init = function(Y, hide_nav, hide_toc, toc_title, window_name, launc
scorm_resize_frame(); scorm_resize_frame();
var left = scorm_layout_widget.getUnitByPosition('left'); var left = scorm_layout_widget.getUnitByPosition('left');
if (left.expanded) { if (left.expand) {
scorm_current_node.focus(); scorm_current_node.focus();
} }
if (scorm_hide_nav == false) { if (scorm_hide_nav == false) {
@ -608,9 +608,8 @@ M.mod_scorm.connectPrereqCallback = {
hnode = scorm_tree_node.getNodeByIndex(hidx); hnode = scorm_tree_node.getNodeByIndex(hidx);
if (hnode) { if (hnode) {
hnode.highlight(); hnode.highlight();
scorm_layout_widget = Y.YUI2.widget.Layout.getLayoutById('scorm_layout');
var left = scorm_layout_widget.getUnitByPosition('left'); var left = scorm_layout_widget.getUnitByPosition('left');
if (left.expanded) { if (left.expand) {
hnode.focus(); hnode.focus();
} }
} }