summaryrefslogtreecommitdiff
path: root/program/js/list.js
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-12-18 20:57:35 +0100
committerAleksander Machniak <alec@alec.pl>2013-12-18 20:57:35 +0100
commit538e64c572220bba43960a3073468c0ce3dc5f4c (patch)
tree0d680bad2bd411f5abc25477b99bc6f844e01da7 /program/js/list.js
parent774f9dc8350b2a4e41213e16e0a30560e2d41ff1 (diff)
Fix Closure-compiler warnings, small code improvements
Diffstat (limited to 'program/js/list.js')
-rw-r--r--program/js/list.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/program/js/list.js b/program/js/list.js
index 6c0fbc2db..54daa983e 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -20,7 +20,7 @@
/**
* Roundcube List Widget class
- * @contructor
+ * @constructor
*/
function rcube_list_widget(list, p)
{
@@ -32,10 +32,6 @@ function rcube_list_widget(list, p)
this.list = list ? list : null;
this.tagname = this.list ? this.list.nodeName.toLowerCase() : 'table';
this.id_regexp = /^rcmrow([a-z0-9\-_=\+\/]+)/i;
- this.thead;
- this.tbody;
- this.fixed_header;
- this.frame = null;
this.rows = {};
this.selection = [];
this.rowcount = 0;