зеркало из https://github.com/mozilla/pjs.git
Work around for bug #9921. Windows of size zero are ignore on Linux right now.
This commit is contained in:
Родитель
3a6cd8fce9
Коммит
a912337b34
|
@ -44,7 +44,7 @@ function toggle_open_close() {
|
||||||
if (is_sidebar_open)
|
if (is_sidebar_open)
|
||||||
{
|
{
|
||||||
// Close it
|
// Close it
|
||||||
sidebar.setAttribute('style','width: 0px');
|
sidebar.setAttribute('style','visibility: hidden; width: 1px');
|
||||||
sidebar.setAttribute('src','about:blank');
|
sidebar.setAttribute('src','about:blank');
|
||||||
|
|
||||||
grippy.setAttribute('open','');
|
grippy.setAttribute('open','');
|
||||||
|
@ -53,8 +53,9 @@ function toggle_open_close() {
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Open it
|
dump("Open it\n");
|
||||||
sidebar.setAttribute('style', 'width:' + sidebar_width + 'px');
|
|
||||||
|
sidebar.setAttribute('style', 'visibility: visible;width:' + sidebar_width + 'px');
|
||||||
sidebar.setAttribute('src', sidebar_uri);
|
sidebar.setAttribute('src', sidebar_uri);
|
||||||
|
|
||||||
grippy.setAttribute('open','true');
|
grippy.setAttribute('open','true');
|
||||||
|
|
Загрузка…
Ссылка в новой задаче