Skip to content

Commit e089074

Browse files
author
Gaurav SinghaRoy
committed
made var name from head to header
1 parent 79a178d commit e089074

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/assets/javascripts/resources/querybuilder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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");

app/assets/javascripts/resources/sparql.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

app/assets/javascripts/resources/variables.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This file will contain any common global variables for javascript
66

77
var configured_convert = {
88
variable_dictionary : [],
9-
head : "",
9+
header : "",
1010
body : "",
1111
footer : ""
1212
};

0 commit comments

Comments
 (0)