From 3436c7e6f9325747fb9fa14976aae3b860a64759 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Wed, 5 Feb 2014 17:12:35 +0100 Subject: [PATCH] Fix capitalisation of ol.Map in docs --- src/ol/interaction/keyboardpaninteraction.js | 2 +- src/ol/interaction/keyboardzoominteraction.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ol/interaction/keyboardpaninteraction.js b/src/ol/interaction/keyboardpaninteraction.js index cb8423981b..d609846e43 100644 --- a/src/ol/interaction/keyboardpaninteraction.js +++ b/src/ol/interaction/keyboardpaninteraction.js @@ -26,7 +26,7 @@ ol.interaction.KEYBOARD_PAN_DURATION = 100; * the keys can only be used when browser focus is on the element to which * the keyboard events are attached. By default, this is the map div, * though you can change this with the `keyboardTargetElement` in - * {@link ol.map}. `document` never loses focus but, for any other element, + * {@link ol.Map}. `document` never loses focus but, for any other element, * focus will have to be on, and returned to, this element if the keys are to * function. * See also {@link ol.interaction.KeyboardZoom}. diff --git a/src/ol/interaction/keyboardzoominteraction.js b/src/ol/interaction/keyboardzoominteraction.js index efc0acc9f6..4fa81ac64f 100644 --- a/src/ol/interaction/keyboardzoominteraction.js +++ b/src/ol/interaction/keyboardzoominteraction.js @@ -16,7 +16,7 @@ goog.require('ol.interaction.Interaction'); * the keys can only be used when browser focus is on the element to which * the keyboard events are attached. By default, this is the map div, * though you can change this with the `keyboardTargetElement` in - * {@link ol.map}. `document` never loses focus but, for any other element, + * {@link ol.Map}. `document` never loses focus but, for any other element, * focus will have to be on, and returned to, this element if the keys are to * function. * See also {@link ol.interaction.KeyboardPan}.