Refresh the SQL editor view on resize to ensure the contents are re-rendered for the new viewport. Fixes #2078
parent
c435d48885
commit
3743c6e86e
|
@ -176,6 +176,16 @@ define([
|
||||||
scrollbarStyle: 'simple'
|
scrollbarStyle: 'simple'
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Refresh Code mirror on SQL panel resize to
|
||||||
|
// display its value properly
|
||||||
|
sql_panel_obj.on(wcDocker.EVENT.RESIZE_ENDED, function() {
|
||||||
|
setTimeout(function() {
|
||||||
|
if(self && self.query_tool_obj) {
|
||||||
|
self.query_tool_obj.refresh();
|
||||||
|
}
|
||||||
|
}, 200);
|
||||||
|
});
|
||||||
|
|
||||||
// Create panels for 'Data Output', 'Explain', 'Messages' and 'History'
|
// Create panels for 'Data Output', 'Explain', 'Messages' and 'History'
|
||||||
var data_output = new pgAdmin.Browser.Panel({
|
var data_output = new pgAdmin.Browser.Panel({
|
||||||
name: 'data_output',
|
name: 'data_output',
|
||||||
|
|
Loading…
Reference in New Issue