diff options
author | Alexander_Kabui | 2023-03-09 01:46:24 +0300 |
---|---|---|
committer | Alexander_Kabui | 2023-03-09 01:46:24 +0300 |
commit | 6e387396b455ed176b3a1ecfd7f079204081f74f (patch) | |
tree | 4965f26adaab9940d6002f6c06e23f0cdf1b7047 | |
parent | 638ee60bc2930ebe3b73814dab6aa3b124211345 (diff) | |
download | genenetwork2-6e387396b455ed176b3a1ecfd7f079204081f74f.tar.gz |
link to hint page;update form selector
-rwxr-xr-x | wqflask/wqflask/templates/index_page.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/wqflask/wqflask/templates/index_page.html b/wqflask/wqflask/templates/index_page.html index 0e120d69..e6ef667a 100755 --- a/wqflask/wqflask/templates/index_page.html +++ b/wqflask/wqflask/templates/index_page.html @@ -117,7 +117,7 @@ <label for="or_search" class="col-xs-1 control-label" style="padding-left: 0px; padding-right: 0px; width: 65px !important;">Get Any:</label> <div class="col-xs-10 controls" style="padding-left: 20px;"> <div class="col-8 autocomplete"> - <textarea id="myInput" onkeydown="pressed(event)" name="search_terms_or" rows="1" class="form-control search-query" style="resize: vertical; max-width: 550px; width: 450px !important;" id="or_search"></textarea> + <textarea id="myInput" onkeyup="pressed(event)" name="search_terms_or" rows="1" class="form-control search-query" style="resize: vertical; max-width: 550px; width: 450px !important;" id="or_search"></textarea> </div> </div> </div> @@ -130,6 +130,9 @@ Enter terms, genes, ID numbers in the <b>Search</b> field.<br> Use <b>*</b> or <b>?</b> wildcards (Cyp*a?, synap*).<br> Use <b>quotes</b> for terms such as <i>"tyrosine kinase"</i>. + + + <div><strong><a style="text-decoration: none;" href="https://issues.genenetwork.org/topics/xapian-search-queries" target=”_blank” >see more hints</a></strong></div> </div> </div> </div> @@ -326,8 +329,11 @@ $(document).on('submit', '#searchform', function(event){ if( event.target.value.trim() != "" ) { saveBeforeSubmit(event.target.value.trim()) - document.forms[1].submit(); + //document.forms[1].submit(); + $( "#searchform" )[0].submit(); + } + } } |