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:
Diffstat (limited to 'js/src/functions.js')
-rw-r--r--js/src/functions.js15
1 files changed, 5 insertions, 10 deletions
diff --git a/js/src/functions.js b/js/src/functions.js
index 669f4b8b18..1cb8758325 100644
--- a/js/src/functions.js
+++ b/js/src/functions.js
@@ -59,36 +59,31 @@ window.centralColumnList = [];
* Array to hold 'Primary' index columns.
* @type {array}
*/
-// eslint-disable-next-line no-unused-vars
-var primaryIndexes = [];
+window.primaryIndexes = [];
/**
* Array to hold 'Unique' index columns.
* @type {array}
*/
-// eslint-disable-next-line no-unused-vars
-var uniqueIndexes = [];
+window.uniqueIndexes = [];
/**
* Array to hold 'Index' columns.
* @type {array}
*/
-// eslint-disable-next-line no-unused-vars
-var indexes = [];
+window.indexes = [];
/**
* Array to hold 'Fulltext' columns.
* @type {array}
*/
-// eslint-disable-next-line no-unused-vars
-var fulltextIndexes = [];
+window.fulltextIndexes = [];
/**
* Array to hold 'Spatial' columns.
* @type {array}
*/
-// eslint-disable-next-line no-unused-vars
-var spatialIndexes = [];
+window.spatialIndexes = [];
/**
* Make sure that ajax requests will not be cached by appending a random variable to their parameters.