mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-26 03:06:37 +03:00
- Fix Javascript Error on some browsers (Epiphany, Chrome) that made the Web UI unusable
This commit is contained in:
parent
afaf40eee0
commit
b88d0e87d9
1 changed files with 8 additions and 4 deletions
|
@ -40,8 +40,10 @@ window.addEvent('domready', function(){
|
|||
'background': '#fff',
|
||||
'visibility': 'visible'
|
||||
});
|
||||
var filt_w = Cookie.read('filters_width').toInt();
|
||||
if(!$defined(filt_w))
|
||||
var filt_w = Cookie.read('filters_width');
|
||||
if($defined(filt_w))
|
||||
filt_w = filt_w.toInt();
|
||||
else
|
||||
filt_w = 120;
|
||||
new MochaUI.Column({
|
||||
id: 'filtersColumn',
|
||||
|
@ -73,8 +75,10 @@ window.addEvent('domready', function(){
|
|||
onResize: saveColumnSizes,
|
||||
height: null
|
||||
});
|
||||
var prop_h = Cookie.read('properties_height').toInt();
|
||||
if(!$defined(prop_h))
|
||||
var prop_h = Cookie.read('properties_height');
|
||||
if($defined(prop_h))
|
||||
prop_h = prop_h.toInt();
|
||||
else
|
||||
prop_h = 200;
|
||||
new MochaUI.Panel({
|
||||
id: 'properties',
|
||||
|
|
Loading…
Reference in a new issue