aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates/gnqa_answer.html
diff options
context:
space:
mode:
Diffstat (limited to 'gn2/wqflask/templates/gnqa_answer.html')
-rw-r--r--gn2/wqflask/templates/gnqa_answer.html26
1 files changed, 21 insertions, 5 deletions
diff --git a/gn2/wqflask/templates/gnqa_answer.html b/gn2/wqflask/templates/gnqa_answer.html
index 4fb4b268..99242b29 100644
--- a/gn2/wqflask/templates/gnqa_answer.html
+++ b/gn2/wqflask/templates/gnqa_answer.html
@@ -95,11 +95,27 @@
/ box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
}
+ #loader {
+ display: none;
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ background: rgba(0,0,0,0.75) url("/static/gif/loader.gif") no-repeat center center;
+ z-index: 10000;
+}
+
</style>
<div style="height: 90vh;width: 100vw; margin-bottom: 10px;">
+
+ <div id="loader">
+
+ </div>
<div style="margin:10px; border:1px solid #ccc;padding: 15px;">
<div >
<h1 id="gnqa_query" style="font-weight: bolder">{{query}}<h1>
@@ -137,13 +153,13 @@
$('#globalsearchform').hide()
$('#gnqna_search_home').show()
$('footer').hide()
-
- $("#gnqna_search_home_input").keyup(function(event) {
-
- console.log("adding input")
+ $("#gnqna_search_home_input").keypress(function(event) {
if (event.keyCode === 13) {
console.log("clicked this button")
- $('#gnqna_search_home').attr('action', "/gnqna").submit();
+ $('#gnqna_search_home').submit();
+ let spinner = $("#loader")
+ spinner.show();
+
}
})
});