Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
"react": "17.0.2",
"react-dom": "17.0.2",
"react-id-swiper": "2.3.2",
"style-scoped": "0.2.2",
"swiper": "4.5.1"
},
"devDependencies": {
Expand Down
8 changes: 0 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions src/bloom-player-core.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ bloom-player-core is responsible for all the behavior of working through a book,
import * as React from "react";
import axios from "axios";
import Swiper, { SwiperInstance } from "react-id-swiper";
// This loads some JS right here that is a polyfill for the (otherwise discontinued) scoped-styles html feature
import "style-scoped/scoped.min.js";
// This loads some JS right here that is a polyfill for the (otherwise discontinued) scoped-styles html feature.
// We use a patched version that fixes a bug with comma-separated selectors containing attribute selectors.
import "./scoped-styles-polyfill.js";
import "swiper/dist/css/swiper.min.css";
import "./bloom-player-ui.less";
import "./bloom-player-content.less";
Expand Down
Loading