mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
Legacy 802.11a UI support. Resolves #983
This commit is contained in:
parent
93db1347cb
commit
6be1ad1612
@ -365,7 +365,9 @@ function loadChannelSelect(selected) {
|
|||||||
var countries_5Ghz_max48ch = data["5Ghz_max48ch"].countries;
|
var countries_5Ghz_max48ch = data["5Ghz_max48ch"].countries;
|
||||||
|
|
||||||
// Map selected hw_mode and country to determine channel list
|
// Map selected hw_mode and country to determine channel list
|
||||||
if (($.inArray(country_code, countries_2_4Ghz_max11ch) !== -1) && (hw_mode !== 'ac') ) {
|
if (hw_mode === 'a') {
|
||||||
|
selectablechannels = data["5Ghz_max48ch"].channels;
|
||||||
|
} else if (($.inArray(country_code, countries_2_4Ghz_max11ch) !== -1) && (hw_mode !== 'ac') ) {
|
||||||
selectablechannels = data["2_4GHz_max11ch"].channels;
|
selectablechannels = data["2_4GHz_max11ch"].channels;
|
||||||
} else if (($.inArray(country_code, countries_2_4Ghz_max14ch) !== -1) && (hw_mode === 'b')) {
|
} else if (($.inArray(country_code, countries_2_4Ghz_max14ch) !== -1) && (hw_mode === 'b')) {
|
||||||
selectablechannels = data["2_4GHz_max14ch"].channels;
|
selectablechannels = data["2_4GHz_max14ch"].channels;
|
||||||
|
Loading…
Reference in New Issue
Block a user