Remaining valid-jsdoc corrections
This commit is contained in:
@@ -35,7 +35,7 @@ goog.require('ol.pointer.EventSource');
|
||||
|
||||
|
||||
/**
|
||||
* @param {ol.pointer.PointerEventHandler} dispatcher
|
||||
* @param {ol.pointer.PointerEventHandler} dispatcher Event handler.
|
||||
* @constructor
|
||||
* @extends {ol.pointer.EventSource}
|
||||
*/
|
||||
@@ -58,7 +58,7 @@ goog.inherits(ol.pointer.NativeSource, ol.pointer.EventSource);
|
||||
/**
|
||||
* Handler for `pointerdown`.
|
||||
*
|
||||
* @param {goog.events.BrowserEvent} inEvent
|
||||
* @param {goog.events.BrowserEvent} inEvent The in event.
|
||||
*/
|
||||
ol.pointer.NativeSource.prototype.pointerDown = function(inEvent) {
|
||||
this.dispatcher.fireNativeEvent(inEvent);
|
||||
@@ -68,7 +68,7 @@ ol.pointer.NativeSource.prototype.pointerDown = function(inEvent) {
|
||||
/**
|
||||
* Handler for `pointermove`.
|
||||
*
|
||||
* @param {goog.events.BrowserEvent} inEvent
|
||||
* @param {goog.events.BrowserEvent} inEvent The in event.
|
||||
*/
|
||||
ol.pointer.NativeSource.prototype.pointerMove = function(inEvent) {
|
||||
this.dispatcher.fireNativeEvent(inEvent);
|
||||
@@ -78,7 +78,7 @@ ol.pointer.NativeSource.prototype.pointerMove = function(inEvent) {
|
||||
/**
|
||||
* Handler for `pointerup`.
|
||||
*
|
||||
* @param {goog.events.BrowserEvent} inEvent
|
||||
* @param {goog.events.BrowserEvent} inEvent The in event.
|
||||
*/
|
||||
ol.pointer.NativeSource.prototype.pointerUp = function(inEvent) {
|
||||
this.dispatcher.fireNativeEvent(inEvent);
|
||||
@@ -88,7 +88,7 @@ ol.pointer.NativeSource.prototype.pointerUp = function(inEvent) {
|
||||
/**
|
||||
* Handler for `pointerout`.
|
||||
*
|
||||
* @param {goog.events.BrowserEvent} inEvent
|
||||
* @param {goog.events.BrowserEvent} inEvent The in event.
|
||||
*/
|
||||
ol.pointer.NativeSource.prototype.pointerOut = function(inEvent) {
|
||||
this.dispatcher.fireNativeEvent(inEvent);
|
||||
@@ -98,7 +98,7 @@ ol.pointer.NativeSource.prototype.pointerOut = function(inEvent) {
|
||||
/**
|
||||
* Handler for `pointerover`.
|
||||
*
|
||||
* @param {goog.events.BrowserEvent} inEvent
|
||||
* @param {goog.events.BrowserEvent} inEvent The in event.
|
||||
*/
|
||||
ol.pointer.NativeSource.prototype.pointerOver = function(inEvent) {
|
||||
this.dispatcher.fireNativeEvent(inEvent);
|
||||
@@ -108,7 +108,7 @@ ol.pointer.NativeSource.prototype.pointerOver = function(inEvent) {
|
||||
/**
|
||||
* Handler for `pointercancel`.
|
||||
*
|
||||
* @param {goog.events.BrowserEvent} inEvent
|
||||
* @param {goog.events.BrowserEvent} inEvent The in event.
|
||||
*/
|
||||
ol.pointer.NativeSource.prototype.pointerCancel = function(inEvent) {
|
||||
this.dispatcher.fireNativeEvent(inEvent);
|
||||
@@ -118,7 +118,7 @@ ol.pointer.NativeSource.prototype.pointerCancel = function(inEvent) {
|
||||
/**
|
||||
* Handler for `lostpointercapture`.
|
||||
*
|
||||
* @param {goog.events.BrowserEvent} inEvent
|
||||
* @param {goog.events.BrowserEvent} inEvent The in event.
|
||||
*/
|
||||
ol.pointer.NativeSource.prototype.lostPointerCapture = function(inEvent) {
|
||||
this.dispatcher.fireNativeEvent(inEvent);
|
||||
@@ -128,7 +128,7 @@ ol.pointer.NativeSource.prototype.lostPointerCapture = function(inEvent) {
|
||||
/**
|
||||
* Handler for `gotpointercapture`.
|
||||
*
|
||||
* @param {goog.events.BrowserEvent} inEvent
|
||||
* @param {goog.events.BrowserEvent} inEvent The in event.
|
||||
*/
|
||||
ol.pointer.NativeSource.prototype.gotPointerCapture = function(inEvent) {
|
||||
this.dispatcher.fireNativeEvent(inEvent);
|
||||
|
||||
Reference in New Issue
Block a user