Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Commit

Permalink
fix(formula efficiency up): speed up
Browse files Browse the repository at this point in the history
  • Loading branch information
tubiaoge committed Sep 25, 2020
1 parent f4625d1 commit d05151f
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 78 deletions.
8 changes: 7 additions & 1 deletion src/controllers/sheetmanage.js
Original file line number Diff line number Diff line change
Expand Up @@ -976,13 +976,19 @@ const sheetmanage = {
return;
}

let _this = this;
let _this = this;

if(index==Store.currentSheetIndex){
return;
}

if(server.allowUpdate){
$("#luckysheet-cell-main #luckysheet-multipleRange-show").empty();
server.multipleIndex = 0;
}



$('#luckysheet-filter-selected-sheet' + Store.currentSheetIndex + ', #luckysheet-filter-options-sheet' + Store.currentSheetIndex).hide();
$('#luckysheet-filter-selected-sheet' + index + ', #luckysheet-filter-options-sheet' + index).show();

Expand Down
Loading

0 comments on commit d05151f

Please sign in to comment.