mirror of https://github.com/apache/cloudstack.git
CS-16681:Inconsistent behavior in custom disk offering selection page in Add VM instance wizard - Fixed by adding a Jquery bind event
This commit is contained in:
parent
dfffa805bc
commit
04c5d89f80
|
|
@ -876,6 +876,12 @@
|
|||
}
|
||||
});
|
||||
|
||||
$wizard.find('div.data-disk-offering div.custom-size input[type=text]').bind('change',function() {
|
||||
var old = $wizard.find('div.data-disk-offering div.custom-size input[type=text]').val();
|
||||
$wizard.find('div.data-disk-offering span.custom-disk-size').html(_s(old));
|
||||
});
|
||||
|
||||
|
||||
return $wizard.dialog({
|
||||
title: _l('label.vm.add'),
|
||||
width: 800,
|
||||
|
|
|
|||
Loading…
Reference in New Issue