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.
* @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;