Fixed misc issues

pull/3/head
Ashesh Vashi 2016-05-16 19:50:49 +05:30
parent 735e9ba67b
commit d1e3237e2e
3 changed files with 4 additions and 3 deletions

View File

@ -1370,7 +1370,8 @@ var enab_dis_level_up = function() {
// Get transaction id to generate request url and
// to generate config files on runtime
var transId = getTransId(),
t_id = '';
t_id = '',
t_res;
if (transId.readyState == 4) {
t_res = JSON.parse(transId.responseText);

View File

@ -264,7 +264,7 @@ iframe {
}
.obj_properties fieldset > div > .pgadmin-control-group > label {
height: 30px;
min-height: 28px;
}
.obj_properties fieldset > .fieldset-content {

View File

@ -231,7 +231,7 @@ define(
method: 'POST',
data:{ 'data': JSON.stringify(args) },
success: function(res) {
if (res.data.status) {
if (res.data && res.data.status) {
//Do nothing as we are creating the job and exiting from the main dialog
Alertify.success(res.data.info);
pgBrowser.Events.trigger('pgadmin-bgprocess:created', self);