mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 21:48:20 +02:00
remove empty line from drag_note.js (#11015)
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
|
||||
export function actionDiscardTags(difference, discardTags) {
|
||||
discardTags = discardTags || {};
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
import { geoPath as d3_geoPath } from 'd3-geo';
|
||||
|
||||
import { osmNode } from '../osm/node';
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
|
||||
|
||||
/* Creates a keybinding behavior for an operation */
|
||||
export function behaviorOperation(context) {
|
||||
var _operation;
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
// https://github.com/openstreetmap/iD/issues/772
|
||||
// http://mathiasbynens.be/notes/localstorage-pattern#comment-9
|
||||
let _storage;
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
import { services } from '../services';
|
||||
import { actionNoop } from '../actions/noop';
|
||||
import { behaviorDrag } from '../behavior/drag';
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
import { actionCopyEntities } from '../actions/copy_entities';
|
||||
import { actionMove } from '../actions/move';
|
||||
import { modeSelect } from '../modes/select';
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
export function osmLanes(entity) {
|
||||
if (entity.type !== 'way') return null;
|
||||
if (!entity.tags.highway) return null;
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
export class QAItem {
|
||||
constructor(loc, service, itemType, id, props) {
|
||||
// Store required properties
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
import { fileFetcher } from '../core/file_fetcher';
|
||||
import { svgPath } from './helpers';
|
||||
|
||||
|
||||
@@ -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,4 +1,3 @@
|
||||
|
||||
import { t } from '../../core/localizer';
|
||||
import { uiPane } from '../pane';
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
import { t } from '../../core/localizer';
|
||||
import { uiPane } from '../pane';
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
import { t } from '../../core/localizer';
|
||||
import { uiPane } from '../pane';
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
import { t } from '../../core/localizer';
|
||||
import { uiPane } from '../pane';
|
||||
import { uiSectionPrivacy } from '../sections/privacy';
|
||||
|
||||
@@ -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,4 +1,3 @@
|
||||
|
||||
let _detected;
|
||||
|
||||
export function utilDetect(refresh) {
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
export function utilObjectOmit(obj, omitKeys) {
|
||||
return Object.keys(obj).reduce(function(result, key) {
|
||||
if (omitKeys.indexOf(key) === -1) {
|
||||
|
||||
Reference in New Issue
Block a user