Skip to content

Commit

Permalink
v3.0.7
Browse files Browse the repository at this point in the history
Fix: Assign options.titleLeaf to this.titleLeaf
  • Loading branch information
rchrd2 committed Mar 26, 2018
1 parent 07851f3 commit 502419b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion BookReader/BookReader.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function BookReader(options) {
this.setup(options);
}

BookReader.version = "3.0.6";
BookReader.version = "3.0.7";

// Mode constants
BookReader.constMode1up = 1;
Expand Down Expand Up @@ -225,6 +225,7 @@ BookReader.prototype.setup = function(options) {
this.bookUrl = options.bookUrl;
this.bookUrlText = options.bookUrlText;
this.bookUrlTitle = options.bookUrlTitle;
this.titleLeaf = options.titleLeaf;

this.metadata = options.metadata;
this.thumbnail = options.thumbnail;
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 3.0.7
- Fix: Assign options.titleLeaf to this.titleLeaf

# 3.0.6
- Another fix for plugin.search.js. The path GET param should not have a trailing slash.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bookreader",
"version": "3.0.6",
"version": "3.0.7",
"description": "The Internet Archive BookReader.",
"repository": {
"type": "git",
Expand Down

0 comments on commit 502419b

Please sign in to comment.