Merge pull request #696 from odoo-dev/master-tour-change-retry-delay-chm

[IMP] tour.js: change delay time for retry to load a tour
This commit is contained in:
Christophe Matthieu 2014-06-20 17:28:53 +02:00
commit e7ccf52043
1 changed files with 1 additions and 1 deletions

View File

@ -376,7 +376,7 @@ var Tour = {
}
Tour.saveState(state.id, state.mode, state.step_id, state.number-1, state.wait+1);
console.log("Tour '"+state.id+"' wait for running (tour undefined)");
setTimeout(Tour.running, state.mode === "test" ? Tour.defaultDelay : Tour.retryRunningDelay);
setTimeout(Tour.running, Tour.retryRunningDelay);
}
},
check: function (step) {