Don't import ourselves

This commit is contained in:
Frederic Junod
2018-09-06 09:01:46 +02:00
parent ba698258c0
commit ea616e7751
73 changed files with 157 additions and 157 deletions

View File

@@ -49,7 +49,7 @@ const POINTER_TYPES = [
/**
* Handler for `msPointerDown`.
*
* @this {import("./MsSource.js").default}
* @this {MsSource}
* @param {MSPointerEvent} inEvent The in event.
*/
function msPointerDown(inEvent) {
@@ -61,7 +61,7 @@ function msPointerDown(inEvent) {
/**
* Handler for `msPointerMove`.
*
* @this {import("./MsSource.js").default}
* @this {MsSource}
* @param {MSPointerEvent} inEvent The in event.
*/
function msPointerMove(inEvent) {
@@ -72,7 +72,7 @@ function msPointerMove(inEvent) {
/**
* Handler for `msPointerUp`.
*
* @this {import("./MsSource.js").default}
* @this {MsSource}
* @param {MSPointerEvent} inEvent The in event.
*/
function msPointerUp(inEvent) {
@@ -84,7 +84,7 @@ function msPointerUp(inEvent) {
/**
* Handler for `msPointerOut`.
*
* @this {import("./MsSource.js").default}
* @this {MsSource}
* @param {MSPointerEvent} inEvent The in event.
*/
function msPointerOut(inEvent) {
@@ -95,7 +95,7 @@ function msPointerOut(inEvent) {
/**
* Handler for `msPointerOver`.
*
* @this {import("./MsSource.js").default}
* @this {MsSource}
* @param {MSPointerEvent} inEvent The in event.
*/
function msPointerOver(inEvent) {
@@ -106,7 +106,7 @@ function msPointerOver(inEvent) {
/**
* Handler for `msPointerCancel`.
*
* @this {import("./MsSource.js").default}
* @this {MsSource}
* @param {MSPointerEvent} inEvent The in event.
*/
function msPointerCancel(inEvent) {
@@ -118,7 +118,7 @@ function msPointerCancel(inEvent) {
/**
* Handler for `msLostPointerCapture`.
*
* @this {import("./MsSource.js").default}
* @this {MsSource}
* @param {MSPointerEvent} inEvent The in event.
*/
function msLostPointerCapture(inEvent) {
@@ -129,7 +129,7 @@ function msLostPointerCapture(inEvent) {
/**
* Handler for `msGotPointerCapture`.
*
* @this {import("./MsSource.js").default}
* @this {MsSource}
* @param {MSPointerEvent} inEvent The in event.
*/
function msGotPointerCapture(inEvent) {