Fixed an issue where the user can not paste the updated table header in safari 12 and 13 browsers. Fixes #4815
parent
b764046587
commit
22f20a38ec
|
@ -23,6 +23,7 @@ Bug fixes
|
|||
*********
|
||||
|
||||
| `Issue #4567 <https://redmine.postgresql.org/issues/4567>`_ - Fixed an issue where privileges were revoked using SQL query on objects like tables that do not correctly show in SQL tab.
|
||||
| `Issue #4815 <https://redmine.postgresql.org/issues/4815>`_ - Fixed an issue where the user can not paste the updated table header in safari 12 and 13 browsers.
|
||||
| `Issue #5849 <https://redmine.postgresql.org/issues/5849>`_ - Ensure that trigger function SQL should have 'create or replace function' instead of 'create function' only.
|
||||
| `Issue #6419 <https://redmine.postgresql.org/issues/6419>`_ - Fixed blank screen issue on windows and also made changes to use NWjs manifest for remembering window size.
|
||||
| `Issue #6531 <https://redmine.postgresql.org/issues/6531>`_ - Fixed the export image issue where relation lines are over the nodes.
|
||||
|
|
|
@ -515,10 +515,10 @@ define('pgadmin.dashboard', [
|
|||
|
||||
if(that.data.length > 50) {
|
||||
// Listen scroll event to load more rows
|
||||
$('.pg-panel-content').on('scroll', that.__loadMoreRows.bind(that));
|
||||
$('.wcScrollableY').on('scroll', that.__loadMoreRows.bind(that));
|
||||
} else {
|
||||
// Listen scroll event to load more rows
|
||||
$('.pg-panel-content').off('scroll', that.__loadMoreRows);
|
||||
$('.wcScrollableY').off('scroll', that.__loadMoreRows);
|
||||
}
|
||||
|
||||
// Re-apply search criteria
|
||||
|
|
|
@ -49,7 +49,7 @@ define(['sources/gettext', 'alertify'], function (gettext, alertify) {
|
|||
textArea.style.background = 'transparent';
|
||||
|
||||
document.body.appendChild(textArea);
|
||||
|
||||
textArea.textContent = text;
|
||||
textArea.select();
|
||||
|
||||
var copyTextToClipboardHandler = function(e) {
|
||||
|
|
|
@ -166,7 +166,6 @@
|
|||
right:0px;
|
||||
bottom:0px;
|
||||
height: 100%!important;
|
||||
overflow: scroll;
|
||||
}
|
||||
|
||||
.pg-prop-footer {
|
||||
|
|
Loading…
Reference in New Issue