diff options
Diffstat (limited to 'yaksh/static')
-rw-r--r-- | yaksh/static/yaksh/js/design_course.js | 6 | ||||
-rw-r--r-- | yaksh/static/yaksh/js/lesson.js | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/yaksh/static/yaksh/js/design_course.js b/yaksh/static/yaksh/js/design_course.js index 2e2f6c9..7b01491 100644 --- a/yaksh/static/yaksh/js/design_course.js +++ b/yaksh/static/yaksh/js/design_course.js @@ -20,9 +20,7 @@ $(document).ready(function(){ $(this).append('<input type="hidden" name="ordered_list" value='+order_list+'>'); return true; }); - var msg = "If the value is True, Check if Prerequisite is completed. \n" + - "If the value is False, Don't check for Prerequisite. \n" + - "Prerequisite can either be a Quiz or Lesson. \n" + - "Prerequisite is checked according to the order of Quiz or Lesson."; + 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); });
\ No newline at end of file diff --git a/yaksh/static/yaksh/js/lesson.js b/yaksh/static/yaksh/js/lesson.js index 82552b0..6f873b9 100644 --- a/yaksh/static/yaksh/js/lesson.js +++ b/yaksh/static/yaksh/js/lesson.js @@ -42,8 +42,8 @@ $(document).ready(function(){ } $("#embed").click(function() { - $("#dialog").toggle(); - $("#dialog").dialog({ + $("#dialog_iframe").toggle(); + $("#dialog_iframe").dialog({ resizable: false, height: '300', width: '450' |