summaryrefslogtreecommitdiffhomepage
path: root/protocols/luci-proto-modemmanager
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2020-08-06 20:58:35 +0200
committerJo-Philipp Wich <jo@mein.io>2021-03-15 11:41:44 +0100
commit171ef77e8985ffd90eb66b8a0a3cd74beb37ccdc (patch)
tree0540f0e6fcba736ac234d5451bb3158c133b7a98 /protocols/luci-proto-modemmanager
parenteeef38d53412a78f185f0bb53153ecb3fe9e8838 (diff)
treewide: remove rendundant proto handler options
The introduction of network device configuration support also implemented all common, protocol-independent interface options directly in the interface config view, so drop the redundant option definitions. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'protocols/luci-proto-modemmanager')
-rw-r--r--protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js b/protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js
index 4a6913e8bd..1851cbe1ca 100644
--- a/protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js
+++ b/protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js
@@ -120,11 +120,8 @@ return network.registerProtocol('modemmanager', {
o = s.taboption('advanced', form.Value, 'mtu', _('Override MTU'));
o.placeholder = dev ? (dev.getMTU() || '1500') : '1500';
o.datatype = 'max(9200)';
-
+
o = s.taboption('general', form.Value, 'signalrate', _('Signal Refresh Rate'), _("In seconds"));
o.datatype = 'uinteger';
-
- s.taboption('general', form.Value, 'metric', _('Gateway metric'));
-
}
});