Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRouslan Placella <rouslan@placella.com>2013-10-28 00:31:08 +0400
committerRouslan Placella <rouslan@placella.com>2013-10-28 00:31:08 +0400
commit7d8144437e3c300d26d1601ce5a49f08c0dcdb29 (patch)
tree7943f32bf74872e348082afe87435f6545396c11 /js/error_report.js
parent4a7236a4182c25de1c0a89a8c2f96901f1334d12 (diff)
Improved appearance and text in error reporting notification
Diffstat (limited to 'js/error_report.js')
-rw-r--r--js/error_report.js28
1 files changed, 16 insertions, 12 deletions
diff --git a/js/error_report.js b/js/error_report.js
index 6097009431..c699550a3e 100644
--- a/js/error_report.js
+++ b/js/error_report.js
@@ -113,22 +113,26 @@ var ErrorReport = {
ErrorReport._removeErrorNotification();
$div = $(
- '<div style="position:fixed;bottom:0px;left:5px;right:5px;' +
+ '<div style="position:fixed;bottom:0;left:0;right:0;margin:0;' +
'z-index:1000" class="error" id="error_notification"></div>'
+ ).append(
+ PMA_getImage("s_error.png") + PMA_messages.strErrorOccurred
);
- html = '';
- html += '<img src="themes/dot.gif" title="" alt="" class="icon ic_s_error">';
- html += PMA_messages.strErrorOccurred;
- $div.html(html);
$buttons = $('<div style="float:right"></div>');
- button_html = '';
- button_html += '<button id="change_error_settings">' +
- PMA_messages.strChangeReportSettings + '</button>';
- button_html += '<button id="show_error_report">' +
- PMA_messages.strShowReportDetails + '</button>';
- button_html += '<button id="ignore_error">' +
- PMA_messages.strIgnore + '</button>';
+
+ button_html = '<button id="show_error_report">';
+ button_html += PMA_messages.strShowReportDetails;
+ button_html += '</button>';
+
+ button_html += '<a id="change_error_settings">';
+ button_html += PMA_getImage('s_cog.png', PMA_messages.strChangeReportSettings);
+ button_html += '</a>';
+
+ button_html += '<a href="#" id="ignore_error">';
+ button_html += PMA_getImage('b_close.png', PMA_messages.strIgnore);
+ button_html += '</a>';
+
$buttons.html(button_html);
$div.append($buttons);