Skip to content
This repository was archived by the owner on May 7, 2025. It is now read-only.

Commit 8ad93a6

Browse files
committed
Merge branch 'develop'
2 parents bd05fe1 + 264d87a commit 8ad93a6

File tree

7 files changed

+14
-10
lines changed

7 files changed

+14
-10
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ node_modules
88
.surgeignore
99
epub_content/x
1010
build.txt
11-
local_test_data
1211
npm-debug.log
1312
http.log
1413
http_ebooks.log
1514
http_app.log
1615
http_app-ebooks.log
16+

.vscode/settings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
"editor.roundedSelection": false,
3333

34-
"editor.wrappingColumn": 0,
34+
"editor.wordWrap": "off",
3535

3636
"editor.quickSuggestions": false,
3737

@@ -47,7 +47,7 @@
4747

4848
"editor.folding": false,
4949

50-
"editor.renderWhitespace": true,
50+
"editor.renderWhitespace": "all",
5151

52-
"editor.tabSize": "4"
52+
"editor.tabSize": 4
5353
}

build-config/selenium_webdriver.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ child.on('exit', function() {
3939
{encoding: 'utf-8'},
4040
function(err, fileContents) {
4141
if (!err) {
42+
43+
// See https://github.com/readium/readium-js-viewer/issues/566
44+
// fileContents = fileContents.replace("// installed as module or locally?", "if (true) { } else ");
45+
4246
var func = eval("( function(){"+fileContents+"; return {start: start, stop: stop}; } )");
4347
var api = func();
4448

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"._": "as this would overwrite / update the JSON, not the master CSON!",
66
"*/": "----------------------------------------------------------------------------",
77
"name": "readium-js-viewer",
8-
"version": "0.25.0",
8+
"version": "0.26.0-alpha",
99
"engines": {
1010
"node": ">=0.12",
1111
"npm": ">2.10"
@@ -70,7 +70,7 @@
7070
"mocha": "latest",
7171
"wd": "latest",
7272
"phantomjs-prebuilt": "latest",
73-
"grunt-selenium-webdriver": "latest",
73+
"grunt-selenium-webdriver": "levexis/grunt-selenium-webdriver",
7474
"crx": "latest",
7575
"chai": "latest",
7676
"chai-as-promised": "latest",

package/package_base.cson

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
name: "readium-js-viewer"
4444

45-
version: "0.25.0"
45+
version: "0.26.0-alpha"
4646

4747
engines:
4848
node: ">=0.12"
@@ -178,7 +178,7 @@ devDependencies:
178178
"phantomjs-prebuilt": 'latest'
179179

180180
#"grunt": 'latest'
181-
"grunt-selenium-webdriver": 'latest'
181+
"grunt-selenium-webdriver": 'levexis/grunt-selenium-webdriver'
182182
#"selenium-webdriver": 'latest'
183183

184184
"crx": 'latest'

readium-js

src/templates/settings-dialog.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ <h4 class="modal-title" id="settings-label">{{strings.settings}}</h4>
2020
<div id="tab-style" class="tab-pane active" role="tabpanel" aria-expanded="true">
2121
<h5 aria-hidden="true">{{strings.preview}}</h5>
2222
<div aria-hidden="true" class="row">
23-
<div data-theme="default-theme" class="col-xs-10 col-xs-offset-1 preview-text default-theme">
23+
<div data-theme="author-theme" class="col-xs-10 col-xs-offset-1 preview-text author-theme">
2424
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus neque dui, congue a suscipit non, feugiat eu urna. Cras in felis sed orci aliquam sagittis.
2525
</div>
2626
</div>

0 commit comments

Comments
 (0)