Commit 3ceb80ea116eecd725af1a40a3e1c5799dbb1d82
1 parent
d3db6fc3
Exists in
theme-brasil-digital-from-staging
and in
9 other branches
site_tour: receive GET parameter to force site tour
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
plugins/site_tour/public/main.js
... | ... | @@ -62,6 +62,6 @@ var siteTourPlugin = (function() { |
62 | 62 | |
63 | 63 | jQuery( document ).ready(function( $ ) { |
64 | 64 | $(window).bind('userDataLoaded', function(event, data) { |
65 | - siteTourPlugin.start(data); | |
65 | + siteTourPlugin.start(data, jQuery.deparam.querystring()['siteTourPlugin']==='force'); | |
66 | 66 | }); |
67 | 67 | }); | ... | ... |