Commit 158beea2e880c2c97dffc3f5003f386a17cb375f
1 parent
b0e9b403
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 | }); | ... | ... |