Converted jsdoc to plain comments

This commit is contained in:
Sebastian Öberg 2015-12-09 18:28:41 +01:00
parent 2ab6f18cee
commit 8f9d2a9bfe

View File

@ -3265,12 +3265,10 @@
} }
} }
/** // True if inside an iframe, otherwise false.
* True if inside an iframe, otherwise false. // @member {Boolean} isInIframe
* @member {Boolean} isInIframe // @private
* @private // @inner
* @inner
*/
var isInIframe = (function() { var isInIframe = (function() {
try { try {
return window.self !== window.top; return window.self !== window.top;
@ -3279,12 +3277,10 @@
} }
})(); })();
/** // @function
* @function // @private
* @private // @inner
* @inner // @returns {Boolean} True if the target has access rights to events, otherwise false.
* @returns {Boolean} True if the target has access rights to events, otherwise false.
*/
function canAccessEvents (target) { function canAccessEvents (target) {
try { try {
return target.addEventListener && target.removeEventListener; return target.addEventListener && target.removeEventListener;