From f3d05279a7afc7c5507be7ea34f6e4b763ef1c06 Mon Sep 17 00:00:00 2001 From: Khushboo Vashi Date: Fri, 6 May 2016 15:29:32 +0100 Subject: [PATCH] In IE10, the Save/Reset buttons are not getting enabled after changing fields. --- web/pgadmin/browser/templates/browser/js/node.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/pgadmin/browser/templates/browser/js/node.js b/web/pgadmin/browser/templates/browser/js/node.js index 7fed7be3b..8779a005d 100644 --- a/web/pgadmin/browser/templates/browser/js/node.js +++ b/web/pgadmin/browser/templates/browser/js/node.js @@ -787,8 +787,8 @@ function($, _, S, pgAdmin, Menu, Backbone, Alertify, pgBrowser, Backform) { var updateButtons = function(hasError, modified) { var btnGroup = this.find('.pg-prop-btn-group'), - btnSave = btnGroup.find('button[type="save"]'), - btnReset = btnGroup.find('button[type="reset"]'); + btnSave = btnGroup.find('button.btn-primary'), + btnReset = btnGroup.find('button.btn-warning'); if (hasError || !modified) { btnSave.prop('disabled', true);