Minor formatting changes.

This commit is contained in:
Marc Jansen
2013-05-01 17:51:27 +03:00
parent 1aabcde0a6
commit 989464cd93
+6 -6
View File
@@ -108,17 +108,17 @@ Behavioural change was made in this commit:
## window.$ is no longer an alias for OpenLayers.Util.getElement ## window.$ is no longer an alias for OpenLayers.Util.getElement
We do no longer create a global variable '$' when such a symbol isn't already We do no longer create a global variable `$` when such a symbol isn't already
defined. Previous versions of OpenLayers would define '$' to be an alias for defined. Previous versions of OpenLayers would define `$` to be an alias for
OpenLayers.Util.getElement. If your application requires window.$ to be defined `OpenLayers.Util.getElement`. If your application requires `window.$` to be
in such a way you can either defined in such a way you can either
* include deprecated.js in your custom build or as additional ressource in your * include deprecated.js in your custom build or as additional ressource in your
HTML-file HTML-file
* or you do the aliasing in your application code yourself: * or you do the aliasing in your application code yourself:
window.$ = OpenLayers.Util.getElement; `window.$ = OpenLayers.Util.getElement;`
Corresponding issue/pull requests: Corresponding issue/pull requests:
* https://github.com/openlayers/openlayers/pull/423 * https://github.com/openlayers/openlayers/pull/423