mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-25 22:56:11 +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.
|
||||||
* 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;
|
||||||
|
Loading…
Reference in New Issue
Block a user