Merge pull request #1251 from OpenRefine/issue1106

Fix overflow of history items outside the window.
This commit is contained in:
Antonin Delpeuch 2017-09-20 15:22:55 +02:00 committed by GitHub
commit 9f62905be4

View File

@ -153,12 +153,8 @@ function initializeUI(uiState) {
ui.historyPanel = new HistoryPanel(ui.historyPanelDiv, ui.historyTabHeader);
ui.dataTableView = new DataTableView(ui.viewPanelDiv);
ui.leftPanelTabs.bind('tabsshow', function(event, tabs) {
if (tabs.index === 0) {
ui.browsingEngine.resize();
} else if (tabs.index === 1) {
ui.historyPanel.resize();
}
ui.leftPanelTabs.bind('tabsactivate', function(event, tabs) {
tabs.newPanel.resize();
});
$(window).bind("resize", resizeAll);