mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Make sure to only move forward on click where appropriate (allow false to be passed to stop auto click)
This commit is contained in:
@@ -957,13 +957,13 @@ define('SELECTED' , ' selected="selected"' , true);
|
||||
|
||||
|
||||
//queXS addition
|
||||
function quexs_submit_on_click()
|
||||
function quexs_submit_on_click($do = true)
|
||||
{
|
||||
include_once(dirname(__FILE__) . '/quexs.php');
|
||||
|
||||
$r = "";
|
||||
|
||||
if (LIME_AUTO_ADVANCE)
|
||||
if (LIME_AUTO_ADVANCE && $do)
|
||||
{
|
||||
$r = "; document.limesurvey.move.value = '";
|
||||
if (isset($_SESSION['step']) && $_SESSION['step'] && ($_SESSION['step'] == $_SESSION['totalsteps']))
|
||||
|
||||
Reference in New Issue
Block a user