Remove unnecessary window parameter to Context

This commit is contained in:
Bryan Housel
2016-11-10 15:19:03 -05:00
parent e606f4713f
commit f800e5afbc
25 changed files with 32 additions and 32 deletions

6
API.md
View File

@@ -147,7 +147,7 @@ iD can use external presets exclusively or along with the default OpenStreetMap
```js
var id = iD.Context(window)
var id = iD.Context()
.presets(customPresets)
.imagery(iD.dataImagery);
@@ -161,7 +161,7 @@ Just like Presets, Imagery can be configured using the `context.imagery` accesso
```js
var id = iD.Context(window)
var id = iD.Context()
.presets(customPresets)
.imagery(customImagery);
@@ -176,7 +176,7 @@ The minimum zoom at which iD enters the edit mode is configured using the `conte
```js
var id = iD.Context(window).
var id = iD.Context()
.minEditableZoom(zoom_level)
```