Pacify eslint, get build and tests running again

This commit is contained in:
Bryan Housel
2016-08-26 01:15:07 -04:00
parent 1021f6266f
commit a86f34b4ef
143 changed files with 406 additions and 342 deletions
+7 -6
View File
@@ -1,16 +1,17 @@
import * as d3 from 'd3';
import { rebind } from '../../util/rebind';
import { getSetValue } from '../../util/get_set_value';
import * as d3 from 'd3';
import { t } from '../../util/locale';
import { nominatim as nominatimService } from '../../services/index';
import { phoneFormats } from '../../../data/index';
export {
url as text,
url as number,
url as tel,
url as email
url as text,
url as number,
url as tel,
url as email
};
export function url(field, context) {
var dispatch = d3.dispatch('change'),
@@ -75,7 +76,7 @@ export function url(field, context) {
return function() {
var t = {};
t[field.key] = getSetValue(input) || undefined;
dispatch.call("change", this, t, onInput);
dispatch.call('change', this, t, onInput);
};
}