mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 13:16:10 +03:00
Converted jsdoc to plain comments
This commit is contained in:
parent
2ab6f18cee
commit
8f9d2a9bfe
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user