summaryrefslogtreecommitdiff
path: root/testapp/static/exam/js/add_question.js
diff options
context:
space:
mode:
authorprathamesh2014-06-05 11:54:08 +0530
committerprathamesh2014-06-05 11:54:08 +0530
commit32e019a07de1f9e819e9c1531c50166289c76cb9 (patch)
treeab43c59e35b2250bb5c4caa8f306d19fadbfe706 /testapp/static/exam/js/add_question.js
parent3d0b69caf6b94a1afe95fef2787929c14afdb485 (diff)
parentfa1cdf5c8f92715f2b3866f0a17e2439d27557c5 (diff)
downloadonline_test-32e019a07de1f9e819e9c1531c50166289c76cb9.tar.gz
online_test-32e019a07de1f9e819e9c1531c50166289c76cb9.tar.bz2
online_test-32e019a07de1f9e819e9c1531c50166289c76cb9.zip
Merge branch 'deploy_server'
Diffstat (limited to 'testapp/static/exam/js/add_question.js')
-rw-r--r--testapp/static/exam/js/add_question.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/testapp/static/exam/js/add_question.js b/testapp/static/exam/js/add_question.js
index d990291..ba17492 100644
--- a/testapp/static/exam/js/add_question.js
+++ b/testapp/static/exam/js/add_question.js
@@ -77,10 +77,6 @@ function textareaformat()
document.getElementById('id_points').setAttribute('class','mini-text');
document.getElementById('id_tags').setAttribute('class','tag-text');
- jQuery().ready(function()
- {
- $("#id_snippet").val("#To avoid indentation errors use tabs for indentation for Python questions");
- });
$('#id_snippet').bind('keydown', function( event ){
if(navigator.userAgent.match("Gecko"))
@@ -135,14 +131,11 @@ function textareaformat()
$('#id_snippet').bind('focus', function( event ){
document.getElementById("id_snippet").rows=5;
document.getElementById("id_snippet").cols=40;
- $('#id_snippet').val("");
});
$('#id_snippet').bind('blur', function( event ){
document.getElementById("id_snippet").rows=1;
document.getElementById("id_snippet").cols=40;
- $('#id_snippet').val("#To avoid indentation errors use tabs for indentation for Python questions");
- });
-
+ });
$('#id_type').bind('change',function(event){
var value = document.getElementById('id_type').value;
if(value == 'mcq')