From 9a7b8b1cca31370c80765899c6b28b9a7428c49d Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Mon, 23 Apr 2012 19:25:39 -0400 Subject: [PATCH] Add a bit to the release notes about dotless identifiers. --- notes/2.13.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 notes/2.13.md diff --git a/notes/2.13.md b/notes/2.13.md new file mode 100644 index 0000000000..c8d0938d6c --- /dev/null +++ b/notes/2.13.md @@ -0,0 +1,9 @@ +# Enhancements and Additions + +## Dotless identifiers + +Previously, objects generated by the library were given id properties with values that contained dots (e.g. "OpenLayers.Control.Navigation_2"). These same identifiers are also used for DOM elements in some case. Though uncommon, a developer may want to access these elements with a CSS selector. To facilitate this, we now always generate ids with underscore instead of dot. + +Corresponding issues/pull requests: + + * https://github.com/openlayers/openlayers/pull/416