Skip to content

Commit

Permalink
follow new linting rule
Browse files Browse the repository at this point in the history
  • Loading branch information
Molly Lloyd committed Oct 3, 2017
1 parent f91a0a7 commit a44aaf0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/source/raster_dem_tile_source.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// @flow

const ajax = require('../util/ajax');
const util = require('../util/util');
const Evented = require('../util/evented');
const normalizeURL = require('../util/mapbox').normalizeTileURL;
const browser = require('../util/browser');
Expand All @@ -19,7 +20,7 @@ class RasterDEMTileSource extends RasterTileSource implements Source {
super(id, options, dispatcher, eventedParent);
this.type = 'raster-dem';
this.maxzoom = 15;
this._options = Object.assign({}, options);
this._options = util.extend({}, options);
}

serialize() {
Expand Down

0 comments on commit a44aaf0

Please sign in to comment.