Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner authored and renovate[bot] committed Nov 3, 2023
1 parent e71e265 commit 55dd7aa
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions contribs/gmf/apps/desktop_alt/Controller.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2016-2022 Camptocamp SA
// Copyright (c) 2016-2023 Camptocamp SA
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
Expand Down Expand Up @@ -72,7 +72,7 @@ class Controller extends AbstractDesktopController {
next: (panel) => {
this.drawLidarprofilePanelActive = panel === 'lidar';

$timeout(() => {}); // this triggered on DOM click, we call $timeout to force Angular diggest
$timeout(() => {}); // this triggered on DOM click, we call $timeout to force Angular digest
},
});
}
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/AbstractDesktopController.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export class AbstractDesktopController extends AbstractAPIController {
this.googleStreetViewActive = panel === 'googlestreetview';
this.mapillaryStreetViewActive = panel === 'mapillary';

$timeout(() => {}); // this triggered on DOM click, we call $timeout to force Angular diggest
$timeout(() => {}); // this triggered on DOM click, we call $timeout to force Angular digest

if (panel === null || !panel.includes('auth')) {
user.setLoginMessage('');
Expand Down
6 changes: 3 additions & 3 deletions src/dropfile/component.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2020-2022 Camptocamp SA
// Copyright (c) 2020-2023 Camptocamp SA
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
Expand Down Expand Up @@ -85,10 +85,10 @@ function processDrag_() {
/**
* This function handles the drop event
* For a valid file, the file is added to the external source
* For an invalid file an alert message is dsplayed
* For an invalid file an alert message is displayed
* If an element with 'gmf-app-map-messages' (disclaimers) exists the message is added to it
* otherwise it is placed directly on the element
* the message desappears after a delay of 4 seconds
* the message disappear after a delay of 4 seconds
*
* @param {JQuery} element Element.
* @param {import('gmf/datasource/ExternalDataSourcesManager').ExternalDatSourcesManager} gmfExternalDataSourcesManager The manager of external datasources.
Expand Down
4 changes: 2 additions & 2 deletions src/misc/Time.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2016-2021 Camptocamp SA
// Copyright (c) 2016-2023 Camptocamp SA
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
Expand Down Expand Up @@ -100,7 +100,7 @@ Time.prototype.getOptions = function (time) {
/**
* Time.prototype.getUTCDate - Get UTC date from a local date object
*
* @param {Date} localDate loacl date object in
* @param {Date} localDate local date object in
* @returns {Date} UTC date
*/
Time.prototype.getUTCDate = function (localDate) {
Expand Down
4 changes: 2 additions & 2 deletions src/offline/NetworkStatus.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2018-2021 Camptocamp SA
// Copyright (c) 2018-2023 Camptocamp SA
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
Expand Down Expand Up @@ -105,7 +105,7 @@ const Service = class {
});

// online event doesn't means we have a internet connection, that means we
// have possiby one (connected to a router ...)
// have possibly one (connected to a router ...)
this.$window_.addEventListener('online', () => {
this.check(undefined);
});
Expand Down
2 changes: 1 addition & 1 deletion src/query/Querent.js
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ export class Querent {
});
}
});
// Re-set the value to the datasource.xxxFormat to be able to re-use
// Re-set the value to the datasource.xxxFormat to be able to reuse
// it later (in another query);
this.getSetOlFormatTypes_(dataSource, wfs, featureTypes);
return features;
Expand Down

0 comments on commit 55dd7aa

Please sign in to comment.