Adjusting the CSS attr for the delete button

This commit is contained in:
Pranav Saxena 2013-03-15 17:23:04 +05:30
parent 8291c9b3ba
commit e86ee12a78
1 changed files with 4 additions and 1 deletions

View File

@ -268,7 +268,7 @@
//Delete Button (begin) - call delete API
{
text: _l('Delete'),
'class': 'cancel',
'class': 'delete',
click: function() {
$loadingOnDialog.appendTo($healthCheckDialog);
@ -328,6 +328,9 @@
$("button").each(function(){
$(this).attr("style", "left: 400px; position: relative; margin-right: 5px; ");
});
$('.ui-dialog .delete').css('left','140px');
},
buttons: buttons
}).closest('.ui-dialog').overlay();