Index: lams_central/web/mainTour.jsp =================================================================== diff -u -rb38bb0fbf5c0a3ae9bb5ad5e811903333826a68a -rae276f6ada0f2c1f76bb0805b79cdbf340589d14 --- lams_central/web/mainTour.jsp (.../mainTour.jsp) (revision b38bb0fbf5c0a3ae9bb5ad5e811903333826a68a) +++ lams_central/web/mainTour.jsp (.../mainTour.jsp) (revision ae276f6ada0f2c1f76bb0805b79cdbf340589d14) @@ -1,119 +1,115 @@ + <%-- The definition of Bootstrap Tour for main.jsp --%> var tour = null; var courseIsHidden = null; function startTour() { courseIsHidden = $("body").hasClass("offcanvas-hidden"); if ( tour == null ) { tour = new Tour({ - name: "LAMSMainTour", + name: "LAMSTour", steps: [ { - title: "LAMS Tour", - content: "This short tour will show you the features of the main LAMS screen. You can stop the tour at any time by clicking End Tour, and restart it by clicking on the Tour button again.", + title: "", + content: "", placement: "top", orphan: true }, { element: ".tour-course-reveal", - title: "Courses", - content: "Click here to reveal or hide your courses.", + title: "", + content: "", placement: "bottom", }, { element: ".tour-organisations", - title: "Courses", - content: "Click on a course to make it the current course.", - placement: "right", + title: "", + content: "", + placement: "top", onShow: revealCourses }, { element: ".tour-organisations-favorites", - title: "Courses", - content: "Your favorite courses will appear at the top of the list.", - placement: "right", + title: "", + content: "", + placement: "bottom", onHidden: hideCourses }, { element: ".tour-org-container", - title: "Lessons", - content: "Lessons will appear here for the current course.", + title: "", + content: "", placement: "top", backdrop: true }, { element: ".tour-user-notifications", - title: "Notifications", - content: "Look at the notifications that you receive about your lessons.", + title: "", + content: "", placement: "left" }, { element: ".tour-index-author", - title: "Authoring", - content: "Create or modify the learning designs used for lessons.", + title: "", + content: "", placement: "left" }, { element: ".tour-user-profile", - title: "User Profile", - content: "Update your user settings.", + title: "", + content: "", placement: "left" }, { element: ".tour-favorite-organisation", - title: "Course Name", - content: "Current course name. Click on the star to add this course to your favourites in the course list.", + title: "", + content: "", placement: "right" }, { element: ".tour-add-lesson", - title: "Add Lesson", - content: "Create a new lesson for the course, or a course subgroup, depending on which button is used.", + title: "", + content: "", placement: "left" }, { element: ".tour-add-single-lesson", - title: "Add Lesson", - content: "Use the down arrow to select an activity and create a lesson with just this single activity.", + title: "", + content: "", placement: "left" }, { element: ".tour-index-coursegradebook-learner", - title: "Course Gradebook", - content: "View your marks for lessons in this course.", + title: "", + content: "", placement: "left" }, { element: ".tour-more-options", - title: "More Options", - content: "General options for managing a course such as notifications, subgroups, gradebook. The contents of this menu will vary depending on your responsibilities.", + title: "", + content: "", placement: "left" }, { element: ".tour-index-monitor", - title: "Lesson Monitoring", - content: "The monitoring screen shows you where the learners are in the lesson and to see the learner\'s contributions", + title: "", + content: "", placement: "left" }, { element: ".tour-index-emailnotifications", - title: "Lesson Notifications", - content: "Send notifications to lesson learners.", + title: "", + content: "", placement: "left" }, { element: ".tour-index-coursegradebookmonitor", - title: "Lesson Gradebook", - content: "Review learner\'s marks and the length of time taken in the lesson.", + title: "", + content: "", placement: "left" }, { element: ".tour-index-conditions", - title: "Lesson Conditions", - content: "Set up conditions for starting or ending the lesson.", + title: "", + content: "", placement: "left" }, { element: ".tour-index-remove-lesson", - title: "Remove Lesson", - content: "Delete the lesson completely. This is permanent - it cannot be undone.", + title: "", + content: "", placement: "left" }, { - element: ".tour-sorting", - title: "Lesson Sorting", - content: "Turn on or off lesson sorting.", - placement: "left" - }, { - title: "End Of Tour", - content: "Thank you for taking the tour. To restart the tour, click the Tour button again.", + title: "", + content: "", placement: "top", orphan: true } ], onEnd: resetCourses, - debug: true, + debug: false, backdrop: false, }); @@ -139,4 +135,7 @@ else revealCourses(tour); } + + + \ No newline at end of file