Hi,
PFA patches for minor issues in status bar and border issue in Unique coll
collection.
--
*Harshal Dhumal*
*Software Engineer *
EenterpriseDB <http://www.enterprisedb.com>
diff --git a/web/pgadmin/browser/templates/browser/js/node.js b/web/pgadmin/browser/templates/browser/js/node.js
index bdda1ac..67d483e 100644
--- a/web/pgadmin/browser/templates/browser/js/node.js
+++ b/web/pgadmin/browser/templates/browser/js/node.js
@@ -152,7 +152,7 @@ function($, _, S, pgAdmin, Menu, Backbone, Alertify, pgBrowser, Backform) {
var onSessionInvalid = function(msg) {
if(!_.isUndefined(that.statusBar)) {
- that.statusBar.html(msg);
+ that.statusBar.html(msg).css("visibility", "visible");
}
callback(true);
@@ -162,7 +162,7 @@ function($, _, S, pgAdmin, Menu, Backbone, Alertify, pgBrowser, Backform) {
var onSessionValidated = function(sessHasChanged) {
if(!_.isUndefined(that.statusBar)) {
- that.statusBar.empty();
+ that.statusBar.empty().css("visibility", "hidden");
}
callback(false, sessHasChanged);
@@ -579,6 +579,7 @@ function($, _, S, pgAdmin, Menu, Backbone, Alertify, pgBrowser, Backform) {
var statusBar = $('<div></div>').addClass(
'pg-prop-status-bar'
).appendTo(j);
+ statusBar.css("visibility", "hidden");
if (location == "header") {
statusBar.appendTo(that.header);
} else {
diff --git a/web/pgadmin/static/js/backform.pgadmin.js b/web/pgadmin/static/js/backform.pgadmin.js
index 8d72921..6662a51 100644
--- a/web/pgadmin/static/js/backform.pgadmin.js
+++ b/web/pgadmin/static/js/backform.pgadmin.js
@@ -806,7 +807,7 @@
' <label class="control-label col-sm-4"><%-label%></label>',
' <button class="btn-sm btn-default add" <%=canAdd ? "" : "disabled=\'disabled\'"%>><%-add_label%></buttton>',
'</div>'].join("\n")),
- gridBody = $('<div class="pgadmin-control-group backgrid form-group col-xs-12 object subnode-body"></div>').append(
+ gridBody = $('<div class="pgadmin-control-group backgrid form-group col-xs-12 object subnode"></div>').append(
gridHeader(data)
);
--
Sent via pgadmin-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers