Updated jQuery to v3.3.1

SVN:trunk[5961]
This commit is contained in:
Stephen Abello
2018-07-23 06:58:30 +00:00
parent a66d91c507
commit 6630051ef3
33 changed files with 814 additions and 1644 deletions

View File

@@ -374,7 +374,7 @@ function LaunchRestoreNow(sBackupFile, sConfirmationMessage)
}
else
{
$('button.restore').attr('disabled', 'disabled');
$('button.restore').prop('disabled', true);
$.unblockUI();
}
});
@@ -385,7 +385,7 @@ EOF
if (MetaModel::GetConfig()->Get('demo_mode'))
{
$oP->add_ready_script("$('button').attr('disabled', 'disabled').attr('title', 'Disabled in demonstration mode')");
$oP->add_ready_script("$('button').prop('disabled', true).attr('title', 'Disabled in demonstration mode')");
}
}
catch(Exception $e)