diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-02-01 09:08:17 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-02-01 09:08:17 +0000 |
| commit | f70b54c3e3290b4cf1e7297d5537dcb2c2929e4f (patch) | |
| tree | bcc0c2f865499ffa0930e16362f041ec366048f0 /roundcubemail/program/js/list.js | |
| parent | 9ecfa7d9819c71e05c2803b6af141de472b304df (diff) | |
- Unify typeof and undefined usage
git-svn-id: https://svn.roundcube.net/trunk@4477 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/list.js')
| -rw-r--r-- | roundcubemail/program/js/list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/list.js b/roundcubemail/program/js/list.js index 183223a51..488b2362b 100644 --- a/roundcubemail/program/js/list.js +++ b/roundcubemail/program/js/list.js @@ -58,7 +58,7 @@ function rcube_list_widget(list, p) this.row_init = function(){}; // overwrite default paramaters - if (p && typeof(p) == 'object') + if (p && typeof p === 'object') for (var n in p) this[n] = p[n]; }; |
