Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/document/jcapture/script.js

19 lines
646 B

function addBtnActionJCapture($btn, props, edid) {
$btn.click(function() {
var appletDiv = document.getElementById("jCaptureAppletDiv");
if (appletDiv==null) {
var oNewDiv = document.createElement("div");
oNewDiv.id="jCaptureAppletDiv";
//oNewDiv.style.display='none';
document.body.appendChild(oNewDiv);
jQuery("#jCaptureAppletDiv").load(DOKU_BASE+"lib/plugins/jcapture/applet.php?edid="+edid+"&pageName="+document.forms['dw__editform'].elements['id'].value);
} else {
document.getElementById("jCaptureApplet").showCaptureFrame();
}
return false;
});
return true;
}