File tree Expand file tree Collapse file tree
app/assets/javascripts/resources Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -626,7 +626,7 @@ QueryBuilder = {
626626 var file_data = "" ;
627627 reader . onload = function ( e ) {
628628 var blocks = QueryBuilder . convert . configured . get_string_blocks ( reader . result ) ;
629- configured_convert . head = QueryBuilder . convert . configured . get_block_string_from_blocks ( blocks , "head " ) ;
629+ configured_convert . header = QueryBuilder . convert . configured . get_block_string_from_blocks ( blocks , "header " ) ;
630630 configured_convert . body = QueryBuilder . convert . configured . get_block_string_from_blocks ( blocks , "body" ) ;
631631 configured_convert . footer = QueryBuilder . convert . configured . get_block_string_from_blocks ( blocks , "footer" ) ;
632632 str_variable_dictionary = QueryBuilder . convert . configured . get_block_string_from_blocks ( blocks , "variable_dictionary" ) ;
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ SPARQL = {
8282
8383 }
8484 download_url += "&variable_dictionary=" + encodeURIComponent ( str_variable_dictionary ) ;
85- download_url += "&header=" + encodeURIComponent ( configured_convert . head ) ;
85+ download_url += "&header=" + encodeURIComponent ( configured_convert . header ) ;
8686 download_url += "&body=" + encodeURIComponent ( configured_convert . body ) ;
8787 download_url += "&footer=" + encodeURIComponent ( configured_convert . footer ) ;
8888 window . open ( download_url ) ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ This file will contain any common global variables for javascript
66
77var configured_convert = {
88 variable_dictionary : [ ] ,
9- head : "" ,
9+ header : "" ,
1010 body : "" ,
1111 footer : ""
1212} ;
You can’t perform that action at this time.
0 commit comments