diff options
-rw-r--r-- | plugins/TakeATour/tours/first_contact/tour.tpl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/TakeATour/tours/first_contact/tour.tpl b/plugins/TakeATour/tours/first_contact/tour.tpl index b26603228..bd3b2bc60 100644 --- a/plugins/TakeATour/tours/first_contact/tour.tpl +++ b/plugins/TakeATour/tours/first_contact/tour.tpl @@ -292,4 +292,19 @@ tour.init(); // Start the tour
tour.start();
+
+jQuery( "#menubar > dl:nth-child(3) > dd > ul > li:nth-child(1) > a" ).click(function() {
+ if (tour.getCurrentStep()==17)
+ {
+ tour.goTo(18);
+ }
+});
+jQuery( "p.albumActions > a:nth-child(1)" ).click(function() {
+ if (tour.getCurrentStep()==20)
+ {
+ tour.goTo(21);
+ }
+});
+
+
{/literal}{/footer_script}
|