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
path: root/js/rte.js
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-07-02 18:14:36 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-07-02 18:14:36 +0300
commit8130247f03a8620a9fb1da29ffa89c8ead066f8b (patch)
tree7b7e759e2bae34804a97e9e696b2c5b663903539 /js/rte.js
parentfe521b8586b129be06dd93993e9a66bb645c2193 (diff)
Fix more implicitly declared variables
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'js/rte.js')
-rw-r--r--js/rte.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/rte.js b/js/rte.js
index e907585390..4248f07ee3 100644
--- a/js/rte.js
+++ b/js/rte.js
@@ -802,7 +802,7 @@ RTE.ROUTINE = {
/**
* Display the dialog to the user
*/
- $ajaxDialog = $('<div>' + data.message + '</div>').dialog({
+ var $ajaxDialog = $('<div>' + data.message + '</div>').dialog({
width: 650,
buttons: that.buttonOptions,
title: data.title,