Merged revision(s) 29859 from trunk/plugins/TakeATour:

bug:3150
step 18 and 21 : can't click directly on links 


git-svn-id: http://piwigo.org/svn/branches/2.7@29860 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
flop25
2014-10-01 19:29:01 +00:00
parent 5ad27a59d3
commit acda99cf4d

View File

@@ -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}