Index: lams_bb_integration/web/modules/create.jsp
===================================================================
diff -u -rb1590ce5975020aa0f70e73829abfcb9ef14262a -r3e68e8512e6cbb370750299b1f60dc56c41ec8a7
--- lams_bb_integration/web/modules/create.jsp (.../create.jsp) (revision b1590ce5975020aa0f70e73829abfcb9ef14262a)
+++ lams_bb_integration/web/modules/create.jsp (.../create.jsp) (revision 3e68e8512e6cbb370750299b1f60dc56c41ec8a7)
@@ -68,8 +68,8 @@
-
-
+
+
@@ -87,12 +87,19 @@
//authorUrl += "¬ifyCloseURL=" + window.location.href;
authorUrl += "¬ifyCloseURL="
if(authorWin && authorWin.open && !authorWin.closed){
-
- authorWin.focus();
+ try {
+ authorWin.focus();
+ }catch(e){
+ // popups blocked by a 3rd party
+ }
}
else{
- authorWin = window.open(authorUrl,'aWindow','width=800,height=600,resizable');
- authorWin.focus();
+ try {
+ authorWin = window.open(authorUrl,'aWindow','width=800,height=600,resizable');
+ authorWin.focus();
+ }catch(e){
+ // popups blocked by a 3rd party
+ }
}
}
@@ -110,9 +117,15 @@
{
//document.workspace_form.nextButton.class= "button";
//document.getElementById("nextButton").disabled = false;
- document.getElementById("nextButton").type = "submit";
- document.getElementById("disabledNextButton").type = "hidden";
+ //document.getElementById("nextButton").type = "submit";
+ //document.getElementById("disabledNextButton").type = "hidden";
+ var b = document.getElementById("disabledNextButton")
+ b.parentNode.removeChild(b);
+
+ document.getElementById("nextButton").style.visibility = "visible";
+
+
//document.getElementById("nextButton").class = "button";
document.getElementById("sequence_id").value=id;
}
Index: lams_bb_integration/web/modules/learnermonitor.jsp
===================================================================
diff -u -r326f080cfe350ca6f32a08d99da05829b77d439b -r3e68e8512e6cbb370750299b1f60dc56c41ec8a7
--- lams_bb_integration/web/modules/learnermonitor.jsp (.../learnermonitor.jsp) (revision 326f080cfe350ca6f32a08d99da05829b77d439b)
+++ lams_bb_integration/web/modules/learnermonitor.jsp (.../learnermonitor.jsp) (revision 3e68e8512e6cbb370750299b1f60dc56c41ec8a7)
@@ -73,8 +73,7 @@
-
-
+
+
LAMS Options