Commit afabb4ab by Don Mitchell

Don't call fn before defined. [ie8 is only browser which seems to care.]

parent 2b5e55b6
......@@ -61,8 +61,6 @@ function setup_debug_${element_id}(){
$('#${element_id}_xqa_form').submit(sendlog_${element_id});
}
setup_debug_${element_id}();
function sendlog_${element_id}(){
var xqaLog = {authkey: '${xqa_key}',
......@@ -97,6 +95,8 @@ function sendlog_${element_id}(){
});
return false;
};
setup_debug_${element_id}();
function getlog_${element_id}(){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment