Commit 79774f79 by Don Mitchell

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

parent 9cf9ca1a
......@@ -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}',
......@@ -98,6 +96,8 @@ function sendlog_${element_id}(){
return false;
};
setup_debug_${element_id}();
function getlog_${element_id}(){
var xqaQuery = {authkey: '${xqa_key}',
......
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