gitextract_4ddgpgrz/ ├── .circleci/ │ └── config.yml ├── .eslintrc.js ├── .gitattributes ├── .github/ │ └── workflows/ │ └── pipeline.yaml ├── .gitignore ├── .gitmodules ├── .jscsrc ├── .jshintrc ├── .npmignore ├── DOCUMENTATION.md ├── GettingStarted.md ├── LICENSE ├── README.md ├── build.js ├── css/ │ ├── impress-common.css │ └── impress-demo.css ├── examples/ │ ├── 2D-navigation/ │ │ ├── css/ │ │ │ ├── fonts.css │ │ │ └── presentation.css │ │ └── index.html │ ├── 3D-positions/ │ │ └── index.html │ ├── 3D-rotations/ │ │ ├── css/ │ │ │ ├── 3D-rotations.css │ │ │ └── fonts.css │ │ └── index.html │ ├── classic-slides/ │ │ ├── css/ │ │ │ ├── classic-slides.css │ │ │ └── fonts.css │ │ └── index.html │ ├── cube/ │ │ ├── css/ │ │ │ ├── cube.css │ │ │ └── fonts.css │ │ └── index.html │ ├── index.html │ └── markdown/ │ ├── css/ │ │ ├── devopsy.css │ │ ├── effects.css │ │ ├── fonts.css │ │ └── markdown-slides.css │ └── index.html ├── index.html ├── js/ │ └── impress.js ├── karma.conf.js ├── npm-readme.md ├── package.json ├── qunit_test_runner.html ├── src/ │ ├── impress.js │ ├── lib/ │ │ ├── README.md │ │ ├── gc.js │ │ ├── rotation.js │ │ └── util.js │ └── plugins/ │ ├── README.md │ ├── autoplay/ │ │ ├── README.md │ │ └── autoplay.js │ ├── blackout/ │ │ ├── README.md │ │ └── blackout.js │ ├── bookmark/ │ │ ├── README.md │ │ └── bookmark.js │ ├── extras/ │ │ ├── README.md │ │ └── extras.js │ ├── form/ │ │ ├── README.md │ │ └── form.js │ ├── fullscreen/ │ │ ├── README.md │ │ └── fullscreen.js │ ├── goto/ │ │ ├── README.md │ │ └── goto.js │ ├── help/ │ │ ├── README.md │ │ └── help.js │ ├── impressConsole/ │ │ ├── README.md │ │ └── impressConsole.js │ ├── media/ │ │ ├── README.md │ │ └── media.js │ ├── mobile/ │ │ ├── README.md │ │ └── mobile.js │ ├── mouse-timeout/ │ │ ├── README.md │ │ └── mouse-timeout.js │ ├── navigation/ │ │ ├── README.md │ │ ├── navigation.js │ │ └── navigation_tests.js │ ├── navigation-ui/ │ │ ├── README.md │ │ └── navigation-ui.js │ ├── progress/ │ │ ├── README.md │ │ └── progress.js │ ├── rel/ │ │ ├── README.md │ │ └── rel.js │ ├── resize/ │ │ ├── README.md │ │ └── resize.js │ ├── skip/ │ │ ├── README.md │ │ └── skip.js │ ├── stop/ │ │ ├── README.md │ │ └── stop.js │ ├── substep/ │ │ ├── README.md │ │ └── substep.js │ ├── toolbar/ │ │ ├── README.md │ │ └── toolbar.js │ └── touch/ │ ├── README.md │ └── touch.js └── test/ ├── HOWTO.md ├── core_tests.js ├── core_tests_presentation.html ├── helpers.js ├── non_default.html ├── non_default.js └── plugins/ └── rel/ ├── padding_tests.js ├── padding_tests_presentation.html ├── rel_to_tests.js ├── rel_to_tests_presentation.html ├── relative_to_screen_size_tests.js ├── relative_to_screen_size_tests_presentation.html ├── rotation_tests.js └── rotation_tests_presentation.html