Skip to content

Commit

Permalink
pass responseType to XHR wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
bcamper committed Oct 16, 2014
1 parent 0ed27f8 commit 4a1c845
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tile_source.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ export class NetworkTileSource extends TileSource {
tile.debug.network = +new Date();

Utils.xhr({
uri: url
uri: url,
responseType: this.response_type
}, (err, resp, body) => {

if (err) { return callback(err); }
Expand Down

0 comments on commit 4a1c845

Please sign in to comment.