mirror of
https://github.com/unraid/webgui.git
synced 2026-01-24 10:28:39 -06:00
Fixed dropdown list may not open in tabbed view
Also made width consistent with other pages
This commit is contained in:
@@ -218,8 +218,15 @@ function exitCode(form,key) {
|
||||
$(function() {
|
||||
var ctrl = "<span id='wait_eth0' class='status red' style='display:none;font-size:small;font-style:italic'>Please wait... configuring interfaces</span>";
|
||||
var form = document.eth0_settings;
|
||||
$('#bond0').dropdownchecklist({emptyText:'None', width:130});
|
||||
$('#bridge0').dropdownchecklist({emptyText:'None', width:130});
|
||||
<?if ($tabbed && !$disabled):?>
|
||||
$('#tab1').bind({click:function(){
|
||||
$('#bond0').dropdownchecklist('destroy').dropdownchecklist({emptyText:'None', width:131});
|
||||
$('#bridge0').dropdownchecklist('destroy').dropdownchecklist({emptyText:'None', width:131});
|
||||
checkBondingSettings(form,0);
|
||||
}});
|
||||
<?endif;?>
|
||||
$('#bond0').dropdownchecklist({emptyText:'None', width:131});
|
||||
$('#bridge0').dropdownchecklist({emptyText:'None', width:131});
|
||||
checkBondingSettings(form,0);
|
||||
checkBridgingSettings(form,0);
|
||||
checkNetworkAccess(form,'eth0');
|
||||
|
||||
Reference in New Issue
Block a user