diff options
author | Irina Gómez <irinagomez@us.es> | 2020-06-22 14:26:24 +0200 |
---|---|---|
committer | Irina Gómez <irinagomez@us.es> | 2020-06-22 14:26:24 +0200 |
commit | eabb7bdb6699201db39fee3049e0bb7dcce94ab4 (patch) | |
tree | 21418b1b929f66c45a730c93170d01471791a017 /admin/WebConsole/comandos/jscripts/RestaurarImagen.js | |
parent | 31d6bf3bc536bf7a66f9824c020e189797f83177 (diff) |
#894 Console 'Restore Image' Command: Supports disk image.disk-image
The form allows you to select the disk image to restore.
The interface script checks image type, disk or partition, and uses the appropriate script.
Diffstat (limited to 'admin/WebConsole/comandos/jscripts/RestaurarImagen.js')
-rw-r--r-- | admin/WebConsole/comandos/jscripts/RestaurarImagen.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/WebConsole/comandos/jscripts/RestaurarImagen.js b/admin/WebConsole/comandos/jscripts/RestaurarImagen.js index 36705236..fb5785d8 100644 --- a/admin/WebConsole/comandos/jscripts/RestaurarImagen.js +++ b/admin/WebConsole/comandos/jscripts/RestaurarImagen.js @@ -31,7 +31,7 @@ var protoclonacion=document.getElementById("protoclonacion_"+idradio); if(despleimagenizda.selectedIndex>0) despleimagen=despleimagenizda; - if(despleimagendrcha.selectedIndex>0) despleimagen=despleimagendrcha; + if (!!despleimagendrcha && despleimagendrcha.selectedIndex>0) despleimagen=despleimagendrcha; var imgcanrepo=despleimagen.value.split("_"); atributos+="idi="+imgcanrepo[0]+RC; // Identificador de la imagen atributos+="nci="+imgcanrepo[1]+RC; // Nombre canónico @@ -94,9 +94,9 @@ var idradio=ochecks[i].id; // Toma idemtificador del desplegable de imagenes var despleimagenizda=document.getElementById("despleimagen_"+idradio+"_1"); // Desplegable izda. var despleimagendcha=document.getElementById("despleimagen_"+idradio+"_0"); // Desplegable derecha. - + var p1=despleimagenizda.selectedIndex; // Toma índice seleccionado - var p2=despleimagendcha.selectedIndex; // Toma índice seleccionado + var p2=(!!despleimagendcha) ? despleimagendcha.selectedIndex : 0; // Toma índice seleccionado if (p1===0 && p2===0){ alert(TbMsg[0]); |