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:
authorHugues Peccatte <hugues.peccatte@gmail.com>2014-11-02 16:04:31 +0300
committerHugues Peccatte <hugues.peccatte@gmail.com>2014-11-02 16:04:35 +0300
commit037a034b437b493b05d98231aff3dc0eb17d459a (patch)
tree07a90b931e2cc644d0b1f21bdd2fc93bd3383563 /js/common.js
parent4139575bbcf0cc042edad8069be63dcb715041ba (diff)
Minor coding style modifications.
Fix typos. PHPDoc and JSDoc updates. Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
Diffstat (limited to 'js/common.js')
-rw-r--r--js/common.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/common.js b/js/common.js
index daf1f04385..8c4e8b8c65 100644
--- a/js/common.js
+++ b/js/common.js
@@ -212,7 +212,7 @@ PMA_DROP_IMPORT = {
.children('progress').val(percent);
},
/**
- * Function to upload the file asyncronously
+ * Function to upload the file asynchronously
*
* @param formData FormData object for a specific file
* @param hash hash of the current file upload
@@ -355,7 +355,7 @@ PMA_DROP_IMPORT = {
/**
* Called when upload has finished
*
- * @param string, uniques hash for a certain upload
+ * @param string, unique hash for a certain upload
* @param bool, true if upload was aborted
* @param bool, status of sql upload, as sent by server
*
@@ -398,7 +398,7 @@ PMA_DROP_IMPORT = {
},
/**
* Triggered when dragged objects are dropped to UI
- * From this function, the AJAX Upload operation is initated
+ * From this function, the AJAX Upload operation is initiated
*
* @param event object
*
@@ -410,7 +410,7 @@ PMA_DROP_IMPORT = {
if (dbname !== '') {
var files = event.originalEvent.dataTransfer.files;
if (!files || files.length === 0) {
- // No files actually transfered
+ // No files actually transferred
$(".pma_drop_handler").fadeOut();
event.stopPropagation();
event.preventDefault();