From d884bcbf0a205bef96c9d771aa350d2768f59b65 Mon Sep 17 00:00:00 2001 From: Fedor Date: Sun, 25 Oct 2009 01:42:15 -0400 Subject: [PATCH] Cosmetics --- release/src/router/www/nas-usb.asp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/release/src/router/www/nas-usb.asp b/release/src/router/www/nas-usb.asp index 2859ac132a..41c26b7ad2 100644 --- a/release/src/router/www/nas-usb.asp +++ b/release/src/router/www/nas-usb.asp @@ -358,8 +358,10 @@ function submit_complete() createFieldTable('', [ { title: 'Core USB Support', name: 'f_usb', type: 'checkbox', value: nvram.usb_enable == 1 }, { title: 'USB 2.0 Support', indent: 2, name: 'f_usb2', type: 'checkbox', value: nvram.usb_usb2 == 1 }, - { title: 'USB 1.1 Support (OHCI)', indent: 2, name: 'f_ohci', type: 'checkbox', value: nvram.usb_ohci == 1 }, - { title: 'USB 1.1 Support (UHCI)', indent: 2, name: 'f_uhci', type: 'checkbox', value: nvram.usb_uhci == 1 }, + { title: 'USB 1.1 Support', indent: 2, multi: [ + { suffix: '  OHCI    ', name: 'f_ohci', type: 'checkbox', value: nvram.usb_ohci == 1 }, + { suffix: '  UHCI  ', name: 'f_uhci', type: 'checkbox', value: nvram.usb_uhci == 1 } + ] }, null, { title: 'USB Printer Support', name: 'f_print', type: 'checkbox', value: nvram.usb_printer == 1 }, { title: 'Bidirectional copying', indent: 2, name: 'f_bprint', type: 'checkbox', value: nvram.usb_printer_bidirect == 1 }, -- 2.11.4.GIT