From 8f9d2a9bfe8cbed68a284f08127eb180944f960d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20=C3=96berg?= Date: Wed, 9 Dec 2015 18:28:41 +0100 Subject: [PATCH] Converted jsdoc to plain comments --- src/mousetracker.js | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/mousetracker.js b/src/mousetracker.js index 1b26fab8..a57993de 100644 --- a/src/mousetracker.js +++ b/src/mousetracker.js @@ -3265,12 +3265,10 @@ } } - /** - * True if inside an iframe, otherwise false. - * @member {Boolean} isInIframe - * @private - * @inner - */ + // True if inside an iframe, otherwise false. + // @member {Boolean} isInIframe + // @private + // @inner var isInIframe = (function() { try { return window.self !== window.top; @@ -3279,12 +3277,10 @@ } })(); - /** - * @function - * @private - * @inner - * @returns {Boolean} True if the target has access rights to events, otherwise false. - */ + // @function + // @private + // @inner + // @returns {Boolean} True if the target has access rights to events, otherwise false. function canAccessEvents (target) { try { return target.addEventListener && target.removeEventListener;