Index: lams_central/web/authoring/template/comms.jsp
===================================================================
diff -u -rf7f38c0fd8e86323bca2df607731f1ec913e8869 -r7b42f38a8e33a8823bc93a5e797ab50db4600385
--- lams_central/web/authoring/template/comms.jsp (.../comms.jsp) (revision f7f38c0fd8e86323bca2df607731f1ec913e8869)
+++ lams_central/web/authoring/template/comms.jsp (.../comms.jsp) (revision 7b42f38a8e33a8823bc93a5e797ab50db4600385)
@@ -138,6 +138,7 @@
newDiv.remove();
} else {
$('#numAssessments').val(nextNum);
+ newDiv.scrollIntoView();
}
});
}
@@ -164,6 +165,7 @@
} else {
numQuestions.val(nextNum);
newDiv.focus();
+ newDiv.scrollIntoView();
}
});
}
@@ -191,6 +193,8 @@
// need to add the down button to the previous last option!
var image = document.getElementById('question'+questionNum+'option'+currNum+'DownButton')
image.style.display="inline";
+ newDiv.scrollIntoView();
+
}
});
}
@@ -244,6 +248,7 @@
} else {
numTopics.val(nextNum);
newDiv.focus();
+ newDiv.scrollIntoView();
}
});
}
Index: lams_central/web/authoring/template/grouping.jsp
===================================================================
diff -u -rf7f38c0fd8e86323bca2df607731f1ec913e8869 -r7b42f38a8e33a8823bc93a5e797ab50db4600385
--- lams_central/web/authoring/template/grouping.jsp (.../grouping.jsp) (revision f7f38c0fd8e86323bca2df607731f1ec913e8869)
+++ lams_central/web/authoring/template/grouping.jsp (.../grouping.jsp) (revision 7b42f38a8e33a8823bc93a5e797ab50db4600385)
@@ -15,7 +15,7 @@
-
+
Index: lams_central/web/css/_authoring_base.scss
===================================================================
diff -u -rf7f38c0fd8e86323bca2df607731f1ec913e8869 -r7b42f38a8e33a8823bc93a5e797ab50db4600385
--- lams_central/web/css/_authoring_base.scss (.../_authoring_base.scss) (revision f7f38c0fd8e86323bca2df607731f1ec913e8869)
+++ lams_central/web/css/_authoring_base.scss (.../_authoring_base.scss) (revision 7b42f38a8e33a8823bc93a5e797ab50db4600385)
@@ -545,8 +545,16 @@
border-radius: 4px;
}
+#rootwizard .nav-pills > li.active > a {
+ background-color: $brand-primary;
+}
+
#rootwizard .progress {
border-radius: 4px;
box-shadow: none;
margin-bottom: 10px;
+}
+
+#rootwizard .progress-bar {
+ background-color: $brand-primary;
}
\ No newline at end of file
Index: lams_central/web/includes/javascript/authoring/authoringMenu.js
===================================================================
diff -u -rf7f38c0fd8e86323bca2df607731f1ec913e8869 -r7b42f38a8e33a8823bc93a5e797ab50db4600385
--- lams_central/web/includes/javascript/authoring/authoringMenu.js (.../authoringMenu.js) (revision f7f38c0fd8e86323bca2df607731f1ec913e8869)
+++ lams_central/web/includes/javascript/authoring/authoringMenu.js (.../authoringMenu.js) (revision 7b42f38a8e33a8823bc93a5e797ab50db4600385)
@@ -662,7 +662,6 @@
}
var dialog = showDialog("ldTemplate", {
- 'modal' : true,
'height' : Math.max(300, $(window).height() - 30),
'width' : Math.max(380, Math.min(1024, $(window).width() - 60)),
'draggable' : true,
@@ -694,7 +693,7 @@
}
});
},
- }, false),
+ }, true),
currentLearningDesignID = null,
regEx = /learningDesignID=(\d+)/g,
// since window.onload does not really work after submitting a form inside the window,