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:
authorMichal Čihař <mcihar@suse.cz>2013-10-02 13:45:19 +0400
committerMichal Čihař <mcihar@suse.cz>2013-10-02 13:45:46 +0400
commit4f5a9e40a2af221cde83b636d04bd3e041476f0c (patch)
tree222a4848fc752ef84f866c01a5f1aa625c7cc7a6 /js/error_report.js
parent424e2ee75b84cf363dcf51754aaa2be6dc652b0a (diff)
Coding style: line breaking before +
Diffstat (limited to 'js/error_report.js')
-rw-r--r--js/error_report.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/js/error_report.js b/js/error_report.js
index befe77ec14..2b058e208a 100644
--- a/js/error_report.js
+++ b/js/error_report.js
@@ -112,8 +112,10 @@ var ErrorReport = {
_showErrorNotification: function () {
ErrorReport._removeErrorNotification();
- $div = $('<div style="position:fixed;bottom:0px;left:5px;right:5px;'
- + 'z-index:1000" class="error" id="error_notification"></div>');
+ $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">';
html += PMA_messages.strErrorOccured;