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:
authorMohamed Ashraf <mohamed.ashraf.213@gmail.com>2013-06-25 09:45:45 +0400
committerMohamed Ashraf <mohamed.ashraf.213@gmail.com>2013-06-25 09:45:45 +0400
commit0fb14931cd9336d17d4bca1439ab95bb399fe9f3 (patch)
tree13dd6b627f42da40e286fe8144dbc2a2097b1c82 /js/error_report.js
parentb9bf9e0bcce8b468bef13226919d9b443b629ca9 (diff)
Corrected comments by Rouslan
* Added doc blocks to functions * Removed syntax error * Changed string in error report form * resized error report notification to full screen size
Diffstat (limited to 'js/error_report.js')
-rw-r--r--js/error_report.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/js/error_report.js b/js/error_report.js
index f8f05e82d0..5ecbe2abcc 100644
--- a/js/error_report.js
+++ b/js/error_report.js
@@ -13,7 +13,7 @@ function error_handler(message, file, line) {
"file": file,
"line": line,
}
-
+
$.get("error_report.php",{
ajax_request: true,
token: get_token(),
@@ -62,7 +62,6 @@ function showReportDialog (message, file, line) {
$dialog.dialog('close')
if (data.success === false) {
//in the case of an error, show the error message returned.
- //currently not possible but just in case
PMA_ajaxShowMessage(data.error, false);
} else {
PMA_ajaxShowMessage(data.message, 3000);
@@ -98,7 +97,7 @@ function showReportDialog (message, file, line) {
function showErrorNotification() {
removeErrorNotification()
- $div = $('<div style="position:fixed;bottom:0px;left:247px;right:5px;'
+ $div = $('<div style="position:fixed;bottom:0px;left:5px;right:5px;'
+'z-index:1000" class="error" id="error_notification"></div>')
html = ""
html += '<img src="themes/dot.gif" title="" alt="" class="icon ic_s_error">'
@@ -107,7 +106,7 @@ function showErrorNotification() {
$buttons = $('<div style="float:right"></div>')
button_html = '';
- button_html += '<button onclick="go_to_settings()">'+
+ button_html += '<button id="change_error_settings" onclick="go_to_settings()">'+
PMA_messages.strChangeReportSettings + '</button>'
button_html += '<button onclick="createReportDialog()">'+
PMA_messages.strShowReportDetails + '</button>'
@@ -117,6 +116,9 @@ function showErrorNotification() {
$div.append($buttons)
$div.appendTo(document.body)
+ $("#change_error_settings").on("click", go_to_settings)
+ $("#change_error_settings").on("click", go_to_settings)
+ $("#change_error_settings").on("click", go_to_settings)
}
function removeErrorNotification() {