autre test avec le curseur en wait mais dans jquery
This commit is contained in:
parent
06fd8a15d8
commit
1dfbb9361f
@ -16,11 +16,3 @@
|
|||||||
/** NE PAS EFFACER
|
/** NE PAS EFFACER
|
||||||
* admin.css
|
* admin.css
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.cursorWait {
|
|
||||||
cursor: wait;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cursorDefault {
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
@ -1,6 +1,9 @@
|
|||||||
function step(i, data) {
|
function step(i, data) {
|
||||||
var errors = ["<?php echo helper::translate('Préparation de la mise à jour'); ?>", "<?php echo helper::translate('Téléchargement et validation de l\'archive'); ?>", "<?php echo helper::translate('Installation'); ?>", "<?php echo helper::translate('Configuration'); ?>"];
|
var errors = ["<?php echo helper::translate('Préparation de la mise à jour'); ?>", "<?php echo helper::translate('Téléchargement et validation de l\'archive'); ?>", "<?php echo helper::translate('Installation'); ?>", "<?php echo helper::translate('Configuration'); ?>"];
|
||||||
$(".installUpdateProgressText").hide(), $(".installUpdateProgressText[data-id=" + i + "]").show();
|
$(".installUpdateProgressText").hide(), $(".installUpdateProgressText[data-id=" + i + "]").show();
|
||||||
|
|
||||||
|
$("body").css("cursor", "wait");
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: "POST",
|
type: "POST",
|
||||||
url: "<?php echo helper::baseUrl(false); ?>?install/steps",
|
url: "<?php echo helper::baseUrl(false); ?>?install/steps",
|
||||||
@ -17,6 +20,7 @@ function step(i, data) {
|
|||||||
setTimeout((function () {
|
setTimeout((function () {
|
||||||
if (4 === i) {
|
if (4 === i) {
|
||||||
$("#installUpdateSuccess").show();
|
$("#installUpdateSuccess").show();
|
||||||
|
$("body").css("cursor", "default");
|
||||||
$("#installUpdateEnd").removeClass("disabled");
|
$("#installUpdateEnd").removeClass("disabled");
|
||||||
$("#installUpdateProgress").hide();
|
$("#installUpdateProgress").hide();
|
||||||
} else {
|
} else {
|
||||||
@ -32,6 +36,7 @@ function step(i, data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function showError(step, message, errors) {
|
function showError(step, message, errors) {
|
||||||
|
$("body").css("cursor", "default");
|
||||||
$("#installUpdateErrorStep").text(errors[step] + " (étape n°" + step + ")");
|
$("#installUpdateErrorStep").text(errors[step] + " (étape n°" + step + ")");
|
||||||
$("#installUpdateError").show();
|
$("#installUpdateError").show();
|
||||||
$("#installUpdateEnd").removeClass("disabled");
|
$("#installUpdateEnd").removeClass("disabled");
|
||||||
|
@ -14,27 +14,27 @@
|
|||||||
<div class="col9 verticalAlignMiddle">
|
<div class="col9 verticalAlignMiddle">
|
||||||
<div id="installUpdateProgress">
|
<div id="installUpdateProgress">
|
||||||
<?php echo template::ico('spin', ['animate' => true]); ?>
|
<?php echo template::ico('spin', ['animate' => true]); ?>
|
||||||
<span class="cursorWait installUpdateProgressText" data-id="1">
|
<span class="installUpdateProgressText" data-id="1">
|
||||||
<?php echo helper::translate('1/4 : Préparation...'); ?>
|
<?php echo helper::translate('1/4 : Préparation...'); ?>
|
||||||
</span>
|
</span>
|
||||||
<span class="cursorWait installUpdateProgressText displayNone" data-id="2">
|
<span class="installUpdateProgressText displayNone" data-id="2">
|
||||||
<?php echo helper::translate('2/4 : Téléchargement...'); ?>
|
<?php echo helper::translate('2/4 : Téléchargement...'); ?>
|
||||||
</span>
|
</span>
|
||||||
<span class="cursorWait installUpdateProgressText displayNone" data-id="3">
|
<span class="installUpdateProgressText displayNone" data-id="3">
|
||||||
<?php echo helper::translate('3/4 : Installation...'); ?>
|
<?php echo helper::translate('3/4 : Installation...'); ?>
|
||||||
</span>
|
</span>
|
||||||
<span class="cursorWait installUpdateProgressText displayNone" data-id="4">
|
<span class="installUpdateProgressText displayNone" data-id="4">
|
||||||
<?php echo helper::translate('4/4 : Configuration...'); ?>
|
<?php echo helper::translate('4/4 : Configuration...'); ?>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div id="installUpdateError" class="message colorRed displayNone cursorDefault">
|
<div id="installUpdateError" class="message colorRed displayNone">
|
||||||
<?php echo template::ico('cancel'); ?>
|
<?php echo template::ico('cancel'); ?>
|
||||||
<strong>
|
<strong>
|
||||||
<?php echo helper::translate('Une erreur est survenue lors de l\'étape :') . '<br>'; ?>
|
<?php echo helper::translate('Une erreur est survenue lors de l\'étape :') . '<br>'; ?>
|
||||||
<span id="installUpdateErrorStep"> </span>.
|
<span id="installUpdateErrorStep"> </span>.
|
||||||
</strong>
|
</strong>
|
||||||
</div>
|
</div>
|
||||||
<div id="installUpdateSuccess" class="message colorGreen displayNone cursorDefault">
|
<div id="installUpdateSuccess" class="message colorGreen displayNone">
|
||||||
<?php echo template::ico('check'); ?>
|
<?php echo template::ico('check'); ?>
|
||||||
<?php echo helper::translate('Mise à jour terminée avec succès.'); ?>
|
<?php echo helper::translate('Mise à jour terminée avec succès.'); ?>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user