From 980b4ec27371a010d21b2d25d46621d760bcc90b Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 21 Mar 2023 23:16:47 -0400 Subject: [PATCH] spelling: already Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/Util/ParseUrl.php | 2 +- view/js/friendica-tagsinput/friendica-tagsinput.js | 2 +- view/js/linkPreview.js | 2 +- view/theme/frio/templates/theme_settings.tpl | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Util/ParseUrl.php b/src/Util/ParseUrl.php index f1e96dedc3..d7475e9819 100644 --- a/src/Util/ParseUrl.php +++ b/src/Util/ParseUrl.php @@ -686,7 +686,7 @@ class ParseUrl { $urlarr = parse_url($url); - // If the url does allready have an scheme + // If the url does already have an scheme // we can stop the process here if (isset($urlarr['scheme'])) { return $url; diff --git a/view/js/friendica-tagsinput/friendica-tagsinput.js b/view/js/friendica-tagsinput/friendica-tagsinput.js index 45c00641fd..8b83b48386 100644 --- a/view/js/friendica-tagsinput/friendica-tagsinput.js +++ b/view/js/friendica-tagsinput/friendica-tagsinput.js @@ -124,7 +124,7 @@ itemTitle = self.options.itemTitle(item), itemThumb = self.options.itemThumb(item); - // Ignore items allready added + // Ignore items already added var existing = $.grep(self.itemsArray, function(item) { return self.options.itemValue(item) === itemValue; } )[0]; if (existing && !self.options.allowDuplicates) { // Invoke onTagExists diff --git a/view/js/linkPreview.js b/view/js/linkPreview.js index e0ce0f64f5..9300784d33 100644 --- a/view/js/linkPreview.js +++ b/view/js/linkPreview.js @@ -273,7 +273,7 @@ * @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, diff --git a/view/theme/frio/templates/theme_settings.tpl b/view/theme/frio/templates/theme_settings.tpl index 7175d97792..ec509714c8 100644 --- a/view/theme/frio/templates/theme_settings.tpl +++ b/view/theme/frio/templates/theme_settings.tpl @@ -202,7 +202,7 @@ } }); - // show the image options is there is allready an image + // show the image options is there is already an image if($("#id_frio_background_image").val().length != 0) { $("#frio_bg_image_options").show(); }