diff options
author | Palaparthy Adityachandra | 2020-04-02 11:22:02 +0530 |
---|---|---|
committer | GitHub | 2020-04-02 11:22:02 +0530 |
commit | 34b72832775c48788bd5154227a3e0faf6affadd (patch) | |
tree | aaabded820ed573dd7b58e9b5071bf9fad907316 /yaksh/static | |
parent | 193326ebc49d40acf80552c8fe46db481a67d534 (diff) | |
parent | 957222b17cd80859158df06ed4c8f2d3b83f2873 (diff) | |
download | online_test-34b72832775c48788bd5154227a3e0faf6affadd.tar.gz online_test-34b72832775c48788bd5154227a3e0faf6affadd.tar.bz2 online_test-34b72832775c48788bd5154227a3e0faf6affadd.zip |
Merge pull request #673 from adityacp/fix_course_design_workflow
Fix UI/UX for creating course modules, lessons, quizzes
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 |