mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-04-07 14:09:12 +08:00
show active if it hidden
This commit is contained in:
@ -2024,6 +2024,12 @@ Workbook.prototype.init=function(bNoBuildDep){
|
||||
var ws = this.aWorksheets[i];
|
||||
ws.initPostOpen(this.wsHandlers);
|
||||
}
|
||||
//show active if it hidden
|
||||
var wsActive = this.getActiveWs();
|
||||
if (wsActive && wsActive.getHidden()) {
|
||||
wsActive.setHidden(false);
|
||||
}
|
||||
|
||||
if(!bNoBuildDep){
|
||||
/*
|
||||
buildDependency необходимо запускать для построения графа зависимостей между ячейками.
|
||||
|
||||
Reference in New Issue
Block a user