diff options
author | adityacp | 2020-03-30 16:03:02 +0530 |
---|---|---|
committer | adityacp | 2020-03-30 16:03:02 +0530 |
commit | 8007fa364ce894a879f72d72c104e7fe49e7154f (patch) | |
tree | c4c1b045777f78ca817785b352c4dee56574ecb9 /yaksh/static | |
parent | f5d0545d45eccfc100b337cea45c5a6805deca0a (diff) | |
download | online_test-8007fa364ce894a879f72d72c104e7fe49e7154f.tar.gz online_test-8007fa364ce894a879f72d72c104e7fe49e7154f.tar.bz2 online_test-8007fa364ce894a879f72d72c104e7fe49e7154f.zip |
Change templates, js, views
- Show module name in design module page
- Fix tooltip in design course and design module page
- Change order of sidebar menu in course detail page
Diffstat (limited to 'yaksh/static')
-rw-r--r-- | yaksh/static/yaksh/js/design_course.js | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/yaksh/static/yaksh/js/design_course.js b/yaksh/static/yaksh/js/design_course.js index dbff9fd..4e2dc9d 100644 --- a/yaksh/static/yaksh/js/design_course.js +++ b/yaksh/static/yaksh/js/design_course.js @@ -20,7 +20,11 @@ $(document).ready(function(){ $(this).append('<input type="hidden" name="ordered_list" value='+order_list+'>'); return true; }); - var msg = "Check Prerequisite is set to Yes by default \n" + - "To change, select the Change checkbox and Click Change Prerequisite button \n"; - $("#prereq_msg").attr("title", msg); + var completion_msg = "This will check if the previous module is completed " + + "before viewing the next module." + $("#prereq_msg").attr("title", completion_msg); + $("#prereq_msg").tooltip(); + var completion_msg = "This will check if the previous module is completed " + + "before viewing the next module based on quiz passing status." + $("#prereq_passing_msg").attr("title", completion_msg); });
\ No newline at end of file |