Commit 14c748ac0aa74d974dcff7ea916e8f8825e33034

Authored by Victor Costa
1 parent b2415bc0
Exists in master

site_tour: receive GET parameter to force site tour

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
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 });
... ...