Skip to content

Commit

Permalink
fix Bug 36024
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyLuzyanin committed Jan 11, 2018
1 parent 826fc9e commit 20be016
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions symboltable/symboltable.js
Expand Up @@ -539,6 +539,11 @@
var oRecentsDiv = $('#recent-table');
oRecentsDiv.empty();
var nRecents = Math.min(getColsCount(), aRecents.length);
if(aRecents.length === 0){
oRecentsDiv.css('border', '1px solid rgb(247, 247, 247)');
return;
}
oRecentsDiv.css('border', '1px solid rgb(122, 122, 122)');
for(var i = 0; i < nRecents; ++i){
var oCell = createCell(aRecents[i].symbol, aRecents[i].font);

Expand Down

0 comments on commit 20be016

Please sign in to comment.