remove empty line from drag_note.js (#11015)

This commit is contained in:
McLaynV
2025-05-06 09:19:00 +02:00
committed by GitHub
parent a781651eea
commit 61670beb1d
17 changed files with 0 additions and 18 deletions
-1
View File
@@ -1,4 +1,3 @@
export function actionDiscardTags(difference, discardTags) {
discardTags = discardTags || {};
-1
View File
@@ -1,4 +1,3 @@
import { geoPath as d3_geoPath } from 'd3-geo';
import { osmNode } from '../osm/node';
-2
View File
@@ -1,5 +1,3 @@
/* Creates a keybinding behavior for an operation */
export function behaviorOperation(context) {
var _operation;
-1
View File
@@ -1,4 +1,3 @@
// https://github.com/openstreetmap/iD/issues/772
// http://mathiasbynens.be/notes/localstorage-pattern#comment-9
let _storage;
-1
View File
@@ -1,4 +1,3 @@
import { services } from '../services';
import { actionNoop } from '../actions/noop';
import { behaviorDrag } from '../behavior/drag';
-1
View File
@@ -1,4 +1,3 @@
import { actionCopyEntities } from '../actions/copy_entities';
import { actionMove } from '../actions/move';
import { modeSelect } from '../modes/select';
-1
View File
@@ -1,4 +1,3 @@
export function osmLanes(entity) {
if (entity.type !== 'way') return null;
if (!entity.tags.highway) return null;
-1
View File
@@ -1,4 +1,3 @@
export class QAItem {
constructor(loc, service, itemType, id, props) {
// Store required properties
-1
View File
@@ -1,4 +1,3 @@
import { fileFetcher } from '../core/file_fetcher';
import { svgPath } from './helpers';
-1
View File
@@ -1,4 +1,3 @@
// Patterns only work in Firefox when set directly on element.
// (This is not a bug: https://bugzilla.mozilla.org/show_bug.cgi?id=750632)
var patterns = {
-1
View File
@@ -1,4 +1,3 @@
import { t } from '../../core/localizer';
import { uiPane } from '../pane';
-1
View File
@@ -1,4 +1,3 @@
import { t } from '../../core/localizer';
import { uiPane } from '../pane';
-1
View File
@@ -1,4 +1,3 @@
import { t } from '../../core/localizer';
import { uiPane } from '../pane';
-1
View File
@@ -1,4 +1,3 @@
import { t } from '../../core/localizer';
import { uiPane } from '../pane';
import { uiSectionPrivacy } from '../sections/privacy';
-1
View File
@@ -1,4 +1,3 @@
// Returns true if a and b have the same elements at the same indices.
export function utilArrayIdentical(a, b) {
// an array is always identical to itself
-1
View File
@@ -1,4 +1,3 @@
let _detected;
export function utilDetect(refresh) {
-1
View File
@@ -1,4 +1,3 @@
export function utilObjectOmit(obj, omitKeys) {
return Object.keys(obj).reduce(function(result, key) {
if (omitKeys.indexOf(key) === -1) {