spelling: already
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
ea0955c4e0
commit
980b4ec273
4 changed files with 4 additions and 4 deletions
|
@ -686,7 +686,7 @@ class ParseUrl
|
||||||
{
|
{
|
||||||
$urlarr = parse_url($url);
|
$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
|
// we can stop the process here
|
||||||
if (isset($urlarr['scheme'])) {
|
if (isset($urlarr['scheme'])) {
|
||||||
return $url;
|
return $url;
|
||||||
|
|
|
@ -124,7 +124,7 @@
|
||||||
itemTitle = self.options.itemTitle(item),
|
itemTitle = self.options.itemTitle(item),
|
||||||
itemThumb = self.options.itemThumb(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];
|
var existing = $.grep(self.itemsArray, function(item) { return self.options.itemValue(item) === itemValue; } )[0];
|
||||||
if (existing && !self.options.allowDuplicates) {
|
if (existing && !self.options.allowDuplicates) {
|
||||||
// Invoke onTagExists
|
// Invoke onTagExists
|
||||||
|
|
|
@ -273,7 +273,7 @@
|
||||||
* @returns {void}
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
var processAttachmentTpl = function(data) {
|
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) {
|
if ($('#preview_' + id).length === 0) {
|
||||||
var tpl = previewTpl.format(
|
var tpl = previewTpl.format(
|
||||||
'type-' + data.type,
|
'type-' + data.type,
|
||||||
|
|
|
@ -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) {
|
if($("#id_frio_background_image").val().length != 0) {
|
||||||
$("#frio_bg_image_options").show();
|
$("#frio_bg_image_options").show();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue