]> git.mxchange.org Git - friendica.git/blobdiff - view/js/linkPreview.js
spelling: deactivate
[friendica.git] / view / js / linkPreview.js
index e0ce0f64f5d66a2e6f8305134c47f3f94d2a005f..28c8df9b673f01f53ae1af88663a0c73432bddc0 100644 (file)
@@ -31,7 +31,7 @@
                        </div>\
                        <div id="previewImages_' + id + '" class="previewImages">\
                                <div id="previewImgBtn_' + id + '" class="previewImgBtn">\
-                                       <button type="button" id="previewChangeImg_' + id + '" class="buttonChangeDeactive previewActionBtn" style="display: none">\
+                                       <button type="button" id="previewChangeImg_' + id + '" class="buttonChangeDeactivate previewActionBtn" style="display: none">\
                                                <i class="fa fa-exchange" aria-hidden="true"></i>\
                                        </button>\
                                </div>\
                                isExtern = true;
                        }
 
-                       // Don't procces the textarea input if we have already
+                       // Don't process the textarea input if we have already
                        // an attachment preview.
                        if (!isExtern && isActive) {
                                return;
                };
 
                /**
-                * Proccess all attachment data and show up a html
+                * Process all attachment data and show up a html
                 * attachment preview.
                 * 
                 * @param {obj} data Attachment data.
                var insertAttachment = function(data) {
                        // If we have already a preview, leaver here.
                        // Note: if we finish the Preview of other media content type,
-                       // we can move this condition to the beggining of crawlText();
+                       // we can move this condition to the beginning of crawlText();
                        if (isActive) {
                                $('#profile-rotator').hide();
                                return;
                 * @returns {void}
                 */
                var processAttachmentTpl = function(data) {
-                       // Load and add the template if it isn't allready loaded.
+                       // Load and add the template if it isn't already loaded.
                        if ($('#preview_' + id).length === 0) {
                                var tpl = previewTpl.format(
                                        'type-' + data.type,
 
                        // More than just one image.
                        if (images.length > 1) {
-                               // Enable the the button to change the preview pictures.
+                               // Enable the button to change the preview pictures.
                                $('#previewChangeImg_' + id).show();
 
                                if (firstPosted === false) {
                };
 
                /**
-                * Convert attachmant bbcode into an array.
+                * Convert attachment bbcode into an array.
                 * 
                 * @param {string} content Text content with the attachment bbcode.
                 * @returns {object || null}
                                $('#previewImage_' + id).html(appendImage);
                                $('#attachmentImageSrc_' + id).val(bin2hex(image));
 
-                               // We need to add the image widht and height when it is 
+                               // We need to add the image width and height when it is 
                                // loaded.
                                $('<img/>' ,{
                                        load : function(){
        /**
        * Get in a textarea the previous word before the cursor.
        * 
-       * @param {object} text Textarea elemet.
+       * @param {object} text Textarea element.
        * @param {integer} caretPos Cursor position.
        * 
        * @returns {string} Previous word.
        function returnWord(text, caretPos) {
                var index = text.indexOf(caretPos);
                var preText = text.substring(0, caretPos);
-               // If the last charachter is a space or enter remove it
+               // If the last character is a space or enter remove it
                // We need this in friendica for the url  preview.
                var lastChar = preText.slice(-1)
                if ( lastChar === " "
        }
 
        /**
-        * Get the cursor posiotion in an text element.
+        * Get the cursor position in an text element.
         * 
-        * @param {object} ctrl Textarea elemet.
+        * @param {object} ctrl Textarea element.
         * @returns {integer} Position of the cursor.
         */
        function getCaretPosition(ctrl) {