[svn r18550] Revert mistaken commit by Tom

skala
Yannick Warnier 17 years ago
parent e265e442ed
commit 7f81c60794
  1. 184
      main/plugin/hotspot/hotspot.js
  2. BIN
      main/plugin/hotspot/hotspot_admin.fla
  3. BIN
      main/plugin/hotspot/hotspot_admin.swf

@ -1,104 +1,82 @@
// in je FORM-tag voor de hotspots: onSubmit="return validateFlashVar('MINIMUM_AANTAL_CLICKS');
var flashVar = 1;
var lcId = new Date().getTime();
//var flashProxy = new FlashProxy(lcId, "JavaScriptFlashGateway.swf");
function validateFlashVar(counter, lang_1, lang_2)
{
return true;
//alert(counter);
//alert(flashVar);
if(counter != flashVar)
{
alert(lang_1 + counter + lang_2);
return false;
}
else
{
return true;
}
}
function updateFlashVar()
{
//alert('updateFlashVar: ' + flashVar);
flashVar++;
}
function getForm()
{
form = document.create;
if (form == null)
form = document.update;
if (form == null)
form = document.vervangmij;
return form;
}
function saveHotspot(question_id, hotspot_id, answer, hotspot_x, hotspot_y)
{
form = getForm();
newHotspot = document.createElement("input");
newHotspot.type = "hidden";
newHotspot.name = "hotspot["+question_id+"]["+hotspot_id+"]";
newHotspot.value = hotspot_x + ";" + hotspot_y;
form.appendChild(newHotspot);
newHotspot = document.createElement("input");
newHotspot.type = "hidden";
newHotspot.name = "choice["+question_id+"]["+hotspot_id+"]";
newHotspot.value = answer;
form.appendChild(newHotspot);
}
function saveDelineationUserAnswer(question_id, hotspot_id, answer, coordinates)
{
form = getForm();
newHotspot = document.createElement("input");
newHotspot.type = "hidden";
newHotspot.name = "hotspot["+question_id+"]["+hotspot_id+"]";
newHotspot.value = coordinates;
form.appendChild(newHotspot);
newHotspot = document.createElement("input");
newHotspot.type = "hidden";
newHotspot.name = "choice["+question_id+"]["+hotspot_id+"]";
newHotspot.value = answer;
form.appendChild(newHotspot);
}
function saveShapeHotspot(question_id, hotspot_id, type, x, y, w, h)
{
form = getForm();
control = "coordinates[" + (hotspot_id - 1) + "]";
form[control].value = x + ";" + y + "|" + w + "|" + h;
control = "type[" + (hotspot_id - 1) + "]";
form[control].value = type;
}
function savePolyHotspot(question_id, hotspot_id, coordinates)
{
form = getForm();
control = "coordinates[" + (hotspot_id - 1) + "]";
form[control].value = coordinates;
control = "type[" + (hotspot_id - 1) + "]";
form[control].value = "poly";
}
function saveDelineationHotspot(question_id, hotspot_id, coordinates)
{
form = getForm();
control = "coordinates[" + (hotspot_id - 1) + "]";
form[control].value = coordinates;
control = "type[" + (hotspot_id - 1) + "]";
form[control].value = "delineation";
}
function jsdebug(debug_string)
{
alert(debug_string);
// in je FORM-tag voor de hotspots: onSubmit="return validateFlashVar('MINIMUM_AANTAL_CLICKS');
var flashVar = 1;
var lcId = new Date().getTime();
//var flashProxy = new FlashProxy(lcId, "JavaScriptFlashGateway.swf");
function validateFlashVar(counter, lang_1, lang_2)
{
return true;
//alert(counter);
//alert(flashVar);
if(counter != flashVar)
{
alert(lang_1 + counter + lang_2);
return false;
}
else
{
return true;
}
}
function updateFlashVar()
{
//alert('updateFlashVar: ' + flashVar);
flashVar++;
}
function saveHotspot(question_id, hotspot_id, answer, hotspot_x, hotspot_y)
{
newHotspot = document.createElement("input");
newHotspot.type = "hidden";
newHotspot.name = "hotspot["+question_id+"]["+hotspot_id+"]";
newHotspot.value = hotspot_x + ";" + hotspot_y;
document.frm_exercise.appendChild(newHotspot);
newHotspot = document.createElement("input");
newHotspot.type = "hidden";
newHotspot.name = "choice["+question_id+"]["+hotspot_id+"]";
newHotspot.value = answer;
document.frm_exercise.appendChild(newHotspot);
}
function saveDelineationUserAnswer(question_id, hotspot_id, answer, coordinates)
{
newHotspot = document.createElement("input");
newHotspot.type = "hidden";
newHotspot.name = "hotspot["+question_id+"]["+hotspot_id+"]";
newHotspot.value = coordinates;
document.frm_exercise.appendChild(newHotspot);
newHotspot = document.createElement("input");
newHotspot.type = "hidden";
newHotspot.name = "choice["+question_id+"]["+hotspot_id+"]";
newHotspot.value = answer;
document.frm_exercise.appendChild(newHotspot);
}
function saveShapeHotspot(question_id, hotspot_id, type, x, y, w, h)
{
document.frm_exercise["hotspot_coordinates["+hotspot_id+"]"].value = x + ";" + y + "|" + w + "|" + h;
document.frm_exercise["hotspot_type["+hotspot_id+"]"].value = type;
}
function savePolyHotspot(question_id, hotspot_id, coordinates)
{
document.frm_exercise["hotspot_coordinates["+hotspot_id+"]"].value = coordinates;
document.frm_exercise["hotspot_type["+hotspot_id+"]"].value = "poly";
}
function saveDelineationHotspot(question_id, hotspot_id, coordinates)
{
document.frm_exercise["hotspot_coordinates["+hotspot_id+"]"].value = coordinates;
document.frm_exercise["hotspot_type["+hotspot_id+"]"].value = "delineation";
}
function jsdebug(debug_string)
{
alert(debug_string);
}
Loading…
Cancel
Save