From c5469243a3357a030af0047dac90ae8fbbb77e85 Mon Sep 17 00:00:00 2001
From: maheshgudi
Date: Thu, 23 Nov 2017 12:59:25 +0530
Subject: Minor changes in requesthandler.js
---
yaksh/static/yaksh/js/requesthandler.js | 10 +++++++---
yaksh/templates/exam.html | 2 +-
yaksh/templates/yaksh/error_template.html | 2 --
yaksh/views.py | 4 ----
4 files changed, 8 insertions(+), 10 deletions(-)
diff --git a/yaksh/static/yaksh/js/requesthandler.js b/yaksh/static/yaksh/js/requesthandler.js
index 5d72241..9421317 100644
--- a/yaksh/static/yaksh/js/requesthandler.js
+++ b/yaksh/static/yaksh/js/requesthandler.js
@@ -61,9 +61,14 @@ function response_handler(method_type, content_type, data, uid){
}
else{
unlock_screen();
+ // var notify = document.getElementById("notification");
+ if ($("#notification")){
+ $("#notification").toggle();
+ }
+
var error_output = document.getElementById("error_panel");
error_output.innerHTML = res.error;
- focus_on_error();
+ focus_on_error(error_output);
}
} else {
reset_values();
@@ -71,8 +76,7 @@ function response_handler(method_type, content_type, data, uid){
}
}
-function focus_on_error(){
- var ele = document.getElementById('error_panel')
+function focus_on_error(ele){
if (ele) {
ele.scrollIntoView(true);
window.scrollBy(0, -15);
diff --git a/yaksh/templates/exam.html b/yaksh/templates/exam.html
index fede185..63c31d6 100644
--- a/yaksh/templates/exam.html
+++ b/yaksh/templates/exam.html
@@ -73,11 +73,11 @@
-
{% if question.type == 'code' or question.type == 'upload' %}