Skip to content

Commit

Permalink
Fix render issues refactoring
Browse files Browse the repository at this point in the history
I have been running a whole year with this fix without any issues and I
am syncing it now.
  • Loading branch information
nerodark committed Jun 12, 2016
1 parent 997f85a commit 0dfc677
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
8 changes: 0 additions & 8 deletions components/active/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,17 +259,9 @@
$.each(listResponse, function(index, data) {
codiad.filemanager.openFile(data.path, data.focused);
});
// Run resize command to fix render issues
codiad.editor.resize();
}
});

// Run resize on window resize
$(window).resize(function() {
codiad.editor.resize();
_this.updateTabDropdownVisibility();
});

// Prompt if a user tries to close window without saving all filess
window.onbeforeunload = function(e) {
if ($('#list-active-files li.changed')
Expand Down
3 changes: 3 additions & 0 deletions js/system.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@
.outerHeight() - 60) + 'px' // TODO Adjust '75' in function of the final tabs height.
});

// Run resize command to fix render issues
codiad.editor.resize();
codiad.active.updateTabDropdownVisibility();
});

$('#settings').click(function(){
Expand Down

0 comments on commit 0dfc677

Please sign in to comment.