mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-26 00:21:31 +08:00
Fix opening right panels
This commit is contained in:
@ -263,7 +263,7 @@ define([
|
||||
}
|
||||
|
||||
if (open) {
|
||||
$markup.findById('#id-paragraph-settings').parent().css("display", "inline-block" );
|
||||
$markup.findById('#id-paragraph-settings').closest('.right-panel').css("display", "inline-block" );
|
||||
$markup.findById('#id-paragraph-settings').addClass("active");
|
||||
}
|
||||
|
||||
|
||||
@ -230,11 +230,6 @@ define([
|
||||
});
|
||||
}
|
||||
|
||||
if (open) {
|
||||
$('#id-slide-settings').parent().css("display", "inline-block" );
|
||||
$('#id-slide-settings').addClass("active");
|
||||
}
|
||||
|
||||
this.trigger('render:after', this);
|
||||
|
||||
return this;
|
||||
|
||||
@ -229,7 +229,7 @@ define([
|
||||
}
|
||||
|
||||
if (open) {
|
||||
$('#id-slide-settings').parent().css("display", "inline-block" );
|
||||
$('#id-slide-settings').closest('.right-panel').css("display", "inline-block" );
|
||||
$('#id-slide-settings').addClass("active");
|
||||
}
|
||||
|
||||
|
||||
@ -261,7 +261,7 @@ define([
|
||||
}
|
||||
|
||||
if (open) {
|
||||
$('#id-cell-settings').parent().css("display", "inline-block" );
|
||||
$('#id-cell-settings').closest('.right-panel').css("display", "inline-block" );
|
||||
$('#id-cell-settings').addClass("active");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user