diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-07-22 21:30:43 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-07-22 21:32:24 +0200 |
commit | c2bb7b362bbd020275ef1441f5fedbf662765357 (patch) | |
tree | 982619a02b799947795dd70e5b9f1afd2e05d3e3 /pyload/web/app/scripts/views | |
parent | Fixed PEP 8 violations in Hosters (diff) | |
download | pyload-c2bb7b362bbd020275ef1441f5fedbf662765357.tar.xz |
little fix for jshint
Diffstat (limited to 'pyload/web/app/scripts/views')
-rw-r--r-- | pyload/web/app/scripts/views/dashboard/filterView.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/web/app/scripts/views/dashboard/filterView.js b/pyload/web/app/scripts/views/dashboard/filterView.js index 736b740e1..9d8c46e4e 100644 --- a/pyload/web/app/scripts/views/dashboard/filterView.js +++ b/pyload/web/app/scripts/views/dashboard/filterView.js @@ -148,7 +148,7 @@ define(['jquery', 'backbone', 'underscore', 'app', 'utils/apitypes', 'models/Pac filter_type: function(e) { var el = $(e.target); - var type = parseInt(el.data('type')); + var type = parseInt(el.data('type'), 10); // Bit is already set, so type is not visible, will become visible now if (type & this.types) { |