From ad943e54725aba82453ed0f36188e59ac5ea31a5 Mon Sep 17 00:00:00 2001 From: Aiosa <469130@mail.muni.cz> Date: Thu, 19 Dec 2024 16:22:50 +0100 Subject: [PATCH 1/2] feat: ability to attach OSD to window reference if available --- src/openseadragon.js | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/src/openseadragon.js b/src/openseadragon.js index 981f8ae5..f447406b 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -3024,17 +3024,23 @@ function OpenSeadragon( options ){ // Universal Module Definition, supports CommonJS, AMD and simple script tag -(function (root, factory) { +(function (root, $) { if (typeof define === 'function' && define.amd) { // expose as amd module - define([], factory); + define([], function () { + return OpenSeadragon; + }); } else if (typeof module === 'object' && module.exports) { // expose as commonjs module - module.exports = factory(); + module.exports = $; } else { + if (!root) { + root = typeof window === 'object' && window; + if (!root) { + $.console.error("OpenSeadragon must run in browser environment!"); + } + } // expose as window.OpenSeadragon - root.OpenSeadragon = factory(); + root.OpenSeadragon = $; } -}(this, function () { - return OpenSeadragon; -})); +}(this, OpenSeadragon)); From b1feb367b8b20fc3dd0c17d16c3941a9c3d37c48 Mon Sep 17 00:00:00 2001 From: Aiosa <469130@mail.muni.cz> Date: Fri, 10 Jan 2025 14:49:59 +0100 Subject: [PATCH 2/2] Fix typo. --- src/openseadragon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openseadragon.js b/src/openseadragon.js index f447406b..837595aa 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -3028,7 +3028,7 @@ function OpenSeadragon( options ){ if (typeof define === 'function' && define.amd) { // expose as amd module define([], function () { - return OpenSeadragon; + return $; }); } else if (typeof module === 'object' && module.exports) { // expose as commonjs module