Skip to content

Commit

Permalink
Merge pull request futurepress#1309 from cbednarski/patch-1
Browse files Browse the repository at this point in the history
Change ordering of jszip and epub.js
  • Loading branch information
fchasen authored May 16, 2023
2 parents c738e65 + 4dde26a commit f09089c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ More specifically, the EPUB schema standardizes the table of contents, provides

## Getting Started

Get the minified code from the build folder:
If using archived `.epub` files include JSZip (this must precede inclusion of epub.js):

```html
<script src="../dist/epub.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.5/jszip.min.js"></script>
```

If using archived `.epub` files include JSZip:
Get the minified code from the build folder:

```html
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.5/jszip.min.js"></script>
<script src="../dist/epub.min.js"></script>
```

Set up a element to render to:
Expand Down

0 comments on commit f09089c

Please sign in to comment.