On 9/24/2014 12:22 AM, Aline Manera
wrote:
On 09/23/2014 03:18 AM, Wen Wang wrote:
From: Wen Wang
<wenwang@linux.vnet.ibm.com>
This bug fix the defect that when adding a new logical storage
pool, a
confrim message box show up and when canceling it, the inputbox
as well
as button "Create" is still disabled.
Signed-off-by: Wen Wang <wenwang@linux.vnet.ibm.com>
---
ui/js/src/kimchi.storagepool_add_main.js | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/ui/js/src/kimchi.storagepool_add_main.js
b/ui/js/src/kimchi.storagepool_add_main.js
index 4f1f943..d926ad7 100644
--- a/ui/js/src/kimchi.storagepool_add_main.js
+++ b/ui/js/src/kimchi.storagepool_add_main.js
@@ -409,6 +409,9 @@ kimchi.addPool = function(event) {
$('#pool-doAdd').show();
});
}, function() {
+ $('input',
'#form-pool-add').removeAttr('disabled');
+ $('#pool-loading').hide();
+ $('#pool-doAdd').show();
});
} else {
kimchi.createStoragePool(formData, function() {
Instead of resetting the button state, I think we should only
change it to "Please, wait..." when the action is confirmed.