From 258218f6dd4fd4e13ad74546917966adfd2e8b4c Mon Sep 17 00:00:00 2001 From: rlx Date: Sun, 24 Jan 2016 18:15:30 +0530 Subject: [PATCH] fix update dialog buttons (firefox) --- static/js/updateDialog.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/js/updateDialog.js b/static/js/updateDialog.js index b6869c8..411c7f9 100644 --- a/static/js/updateDialog.js +++ b/static/js/updateDialog.js @@ -87,7 +87,7 @@ oml.ui.updateDialog = function() { } else { that.options({content: $error}); $updateButton.hide(); - $closeButton.show(); + $closeButton.css({display: 'inline'}); that.enableCloseButton(); that.enableButtons(); } @@ -136,8 +136,8 @@ oml.ui.updateDialog = function() { [result.data.version.split('-')[1]] )); $closeButton.hide(); - $dontUpdateButton.show(); - $updateButton.show(); + $dontUpdateButton.css({display: 'inline'}); + $updateButton.css({display: 'inline'}); } }); } else {