diff --git a/notes/2.13.md b/notes/2.13.md index 3adc3aeffa..53f99a3437 100644 --- a/notes/2.13.md +++ b/notes/2.13.md @@ -108,17 +108,17 @@ Behavioural change was made in this commit: ## 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 -defined. Previous versions of OpenLayers would define '$' to be an alias for -OpenLayers.Util.getElement. If your application requires window.$ to be defined -in such a way you can either +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 +`OpenLayers.Util.getElement`. If your application requires `window.$` to be +defined in such a way you can either * include deprecated.js in your custom build or as additional ressource in your HTML-file * or you do the aliasing in your application code yourself: - window.$ = OpenLayers.Util.getElement; - + `window.$ = OpenLayers.Util.getElement;` + Corresponding issue/pull requests: * https://github.com/openlayers/openlayers/pull/423