diff options
author | prathamesh | 2014-06-05 19:05:58 +0530 |
---|---|---|
committer | prathamesh | 2014-06-05 19:05:58 +0530 |
commit | e5cd3e59c0c29e0ebb8458a704dc3a1cac51f687 (patch) | |
tree | e20ce2de046c3135c8443bb7d038b6cb3559c987 /testapp | |
parent | cd0c667359e16139c4ece1a275a14a5a6d914e64 (diff) | |
parent | dff8905769f900b17124a6cf2c79ec5678faed66 (diff) | |
download | online_test-e5cd3e59c0c29e0ebb8458a704dc3a1cac51f687.tar.gz online_test-e5cd3e59c0c29e0ebb8458a704dc3a1cac51f687.tar.bz2 online_test-e5cd3e59c0c29e0ebb8458a704dc3a1cac51f687.zip |
Merge branch 'master' of https://github.com/FOSSEE/online_test
Diffstat (limited to 'testapp')
-rw-r--r-- | testapp/static/exam/js/question.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/testapp/static/exam/js/question.js b/testapp/static/exam/js/question.js index 2bf6f60..75baf76 100644 --- a/testapp/static/exam/js/question.js +++ b/testapp/static/exam/js/question.js @@ -120,7 +120,6 @@ function addLineNumbers(id) el.className='AnswerWithLines'; el.id='AnswerWithLines'; el.style.height = (ta.scrollHeight) + 'px'; - for(var no=split_content.length+1;no<1000;no++) { if(string.length>0)string = string + '<br>'; @@ -132,7 +131,6 @@ function addLineNumbers(id) el.className='SnippetWithLines'; el.id='SnippetWithLines'; el.style.height = (ta.scrollHeight) + 'px'; - for(var no=1;no<=split_content.length;no++) { if(string.length>0)string = string + '<br>'; |