mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 01:03:08 -07:00
Fix in last commit
This commit is contained in:
parent
29e757bb3a
commit
e16ca862f4
1 changed files with 18 additions and 18 deletions
|
@ -184,24 +184,6 @@ window.addEvent('load', function(){
|
|||
column: 'filtersColumn',
|
||||
height: 300
|
||||
});
|
||||
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',
|
||||
title: 'Panel',
|
||||
header: true,
|
||||
padding: { top: 0, right: 0, bottom: 0, left: 0 },
|
||||
contentURL: 'prop-general.html',
|
||||
require: {
|
||||
css: ['css/Tabs.css']
|
||||
},
|
||||
tabsURL: 'properties.html',
|
||||
column: 'mainColumn',
|
||||
height: prop_h
|
||||
});
|
||||
initializeWindows();
|
||||
var r=0;
|
||||
var waiting=false;
|
||||
|
@ -318,6 +300,24 @@ window.addEvent('load', function(){
|
|||
onResize: saveColumnSizes,
|
||||
height: null
|
||||
});
|
||||
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',
|
||||
title: 'Panel',
|
||||
header: true,
|
||||
padding: { top: 0, right: 0, bottom: 0, left: 0 },
|
||||
contentURL: 'prop-general.html',
|
||||
require: {
|
||||
css: ['css/Tabs.css']
|
||||
},
|
||||
tabsURL: 'properties.html',
|
||||
column: 'mainColumn',
|
||||
height: prop_h
|
||||
});
|
||||
//ajaxfn();
|
||||
if(BrowserDetect.browser != "Safari") {
|
||||
// Safari has trouble with this
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue