Skip to content

Commit

Permalink
Fix URL query parsing in reader
Browse files Browse the repository at this point in the history
  • Loading branch information
infojunkie committed Feb 10, 2015
1 parent c2ab2e2 commit 5dab450
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/reader.js

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

2 changes: 1 addition & 1 deletion build/reader.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/reader.min.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion reader/js/reader.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion reader_src/reader.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ EPUBJS.Reader = function(bookPath, _options) {
var split = p.split("=");
var name = split[0];
var value = split[1] || '';
reader.settings[name] = value;
reader.settings[name] = decodeURIComponent(value);
});
}

Expand Down

0 comments on commit 5dab450

Please sign in to comment.