From: Jaroslav Kysela Date: Sat, 23 May 2015 18:31:20 +0000 (+0200) Subject: webui: general config - use only one checkbox type, fixes #2874 X-Git-Tag: v4.2.1~2482 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7b5e7f5e046670cb192eb1fbd42ff50bccf1d20;p=thirdparty%2Ftvheadend.git webui: general config - use only one checkbox type, fixes #2874 --- diff --git a/src/webui/static/app/config.js b/src/webui/static/app/config.js index 354d306c5..b4c120a6a 100644 --- a/src/webui/static/app/config.js +++ b/src/webui/static/app/config.js @@ -106,12 +106,12 @@ tvheadend.miscconf = function(panel, index) { * Time/Date */ - var tvhtimeUpdateEnabled = new Ext.form.Checkbox({ + var tvhtimeUpdateEnabled = new Ext.ux.form.XCheckbox({ name: 'tvhtime_update_enabled', fieldLabel: 'Update time' }); - var tvhtimeNtpEnabled = new Ext.form.Checkbox({ + var tvhtimeNtpEnabled = new Ext.ux.form.XCheckbox({ name: 'tvhtime_ntp_enabled', fieldLabel: 'Enable NTP driver' });