|
@@ -3462,8 +3462,8 @@ function changeCalcBaseFeeRate(toggle) {
|
|
|
$('#calcBaseFeeRate').find('.modal-body').find('button:first').hide();
|
|
|
$('#calcBaseFeeRate').find('.modal-body').find('ul:first').show();
|
|
|
$('#calcBaseExp').remove();
|
|
|
- let $input = $('<input>').attr('id', 'calcBaseExp').addClass('form-control');
|
|
|
- $('#expArea').prepend($input);
|
|
|
+ let $textarea = $('<textarea>').attr('id', 'calcBaseExp').prop('rows', 2).addClass('form-control').css('resize', 'none');
|
|
|
+ $('#expArea').prepend($textarea);
|
|
|
}
|
|
|
else if(toggle === 'feeRate'){
|
|
|
$('#mixedHeader').hide();
|
|
@@ -3478,7 +3478,7 @@ function changeCalcBaseFeeRate(toggle) {
|
|
|
$('#calcBaseFeeRate').find('.modal-body').find('button:first').show();
|
|
|
$('#calcBaseFeeRate').find('.modal-body').find('ul:first').show();
|
|
|
$('#calcBaseExp').remove();
|
|
|
- let $textarea = $('<textarea>').attr('id', 'calcBaseExp').prop('rows', 3).addClass('form-control').css('resize', 'none');
|
|
|
+ let $textarea = $('<textarea>').attr('id', 'calcBaseExp').prop('rows', 2).addClass('form-control').css('resize', 'none');
|
|
|
$('#expArea').prepend($textarea);
|
|
|
}
|
|
|
}
|