diff options
author | Pedro José Batista <pedrobatista@myself.com> | 2020-06-02 09:21:38 -0300 |
---|---|---|
committer | Pedro José Batista <pedrobatista@myself.com> | 2020-06-02 09:21:38 -0300 |
commit | b7e1bdd1f9b9395b62079c3f4eafdf4b0e7cf997 (patch) | |
tree | 68750b2ecdda9835bbea9a069335b8b33aa26025 /src | |
parent | bc938f05b708041921cf9d75b2cd84c92574c463 (diff) | |
download | svg.js-b7e1bdd1f9b9395b62079c3f4eafdf4b0e7cf997.tar.gz svg.js-b7e1bdd1f9b9395b62079c3f4eafdf4b0e7cf997.zip |
Added exports from window.js
Diffstat (limited to 'src')
-rw-r--r-- | src/main.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/main.js b/src/main.js index f95ccf5..cb09fc9 100644 --- a/src/main.js +++ b/src/main.js @@ -66,7 +66,13 @@ export { default as parser } from './modules/core/parser.js' export { default as find } from './modules/core/selector.js' export * from './modules/core/event.js' export * from './utils/adopter.js' -export { registerWindow } from './utils/window.js' +export { + getWindow, + registerWindow, + restoreWindow, + saveWindow, + withWindow +} from './utils/window.js' /* Animation Modules */ export { default as Animator } from './animation/Animator.js' |