Fix render issues refactoring

I have been running a whole year with this fix without any issues and I
am syncing it now.
This commit is contained in:
nerodark
2016-06-12 19:10:08 -04:00
parent 997f85a3d3
commit 0dfc677f30
2 changed files with 3 additions and 8 deletions

View File

@@ -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')

View File

@@ -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(){