Anatoly Smolyaninov
ce8dc1e4ba
Fix last\first spine methods
2017-09-26 20:56:07 +07:00
Fred Chasen
3397c41a6b
Merge pull request #662 from bdauria/v0.3
...
Take annotation type in consideration to delete it.
2017-09-25 18:00:25 -07:00
Bruno
53b89dd844
Take annotation type in consideration to delete it.
2017-09-25 17:26:11 +02:00
Fred Chasen
9f0623b798
Add canonical option, fix base tag for Safari
2017-09-21 22:10:58 -07:00
Fred Chasen
ec0325f122
Version bump to 0.3.52
2017-09-21 11:35:25 -07:00
Fred Chasen
d82e5dd676
Merge pull request #658 from bdauria/v0.3
...
Don't go to next section if left width is equal container's scrollWidth
2017-09-21 11:33:22 -07:00
Bruno
7102934822
Don't go to next section if left width is equal container's scrollWidth
2017-09-21 09:28:36 +02:00
Fred Chasen
e8a6ed3e64
Update hypothesis example
2017-09-20 16:04:12 -07:00
Fred Chasen
f10feec1ec
Add enable-annotation attr to iframe
2017-09-14 22:45:08 -05:00
Fred Chasen
673e5e83dc
Fix bota for non-latin, fix webkit locationOf
2017-09-11 18:59:28 -07:00
Fred Chasen
ac08fe0fba
Update webkit detection, update embedded example
2017-09-02 13:52:31 -04:00
Fred Chasen
6313bb09d0
Fix for webkit not supporting position of collapsed ranges
2017-09-01 22:59:23 -04:00
Fred Chasen
f3a2f21fb3
Updated hypothes.is examples
2017-08-30 08:47:20 -04:00
Fred Chasen
e9d7e79158
Merge branch 'v0.3' of https://github.com/futurepress/epub.js into v0.3
2017-08-30 00:03:23 -04:00
Fred Chasen
3f1a353cf3
Make sure view is defined in views.each
2017-08-28 17:50:28 -04:00
Fred Chasen
eff216fd2d
Simplify iframe view expanding
2017-08-28 17:10:51 -04:00
Fred Chasen
8d2b9cc8d4
Update deps
2017-08-28 11:43:11 -04:00
Fred Chasen
cc0110a58c
Guard against empty contents
2017-08-28 11:05:09 -04:00
Fred Chasen
7cea7e8a6f
Rename attribute to content in injectIdentifier
2017-08-25 15:09:32 -04:00
Fred Chasen
576a5b81dc
Fixed scrolled location, updated hypothesis examples
2017-08-25 14:16:45 -04:00
Fred Chasen
ced1bf89ff
Continuous manager fixes
2017-08-10 15:45:26 -04:00
Fred Chasen
03e7ca085c
Fixes for page counting
2017-08-09 17:19:02 -04:00
Fred Chasen
8bfed1593c
Fixed spaces in Section
2017-08-07 16:41:12 -07:00
Fred Chasen
c2b3284259
Temp disable scrolling to visible, always re-render
2017-08-02 22:09:52 -04:00
Fred Chasen
6401485f48
Update annotation remove and always add default theme
2017-08-02 16:31:57 -04:00
Fred Chasen
837775b2cf
version bump to 0.3.42
2017-08-01 17:26:10 -04:00
Fred Chasen
bb1ab21a33
Updates for rendering in embedded Webviews ( #643 )
...
* Initial embedding support
* Updates for rendering in embedded webviews
* toLowerCase nodeName check
2017-08-01 17:25:19 -04:00
fchasen
5cc8b191d0
Listen for transition resize events, remove ResizeObserver polyfill
2017-07-24 18:47:49 -04:00
Fred Chasen
5b44f59604
Added resize observer polyfill
2017-07-21 16:52:13 -04:00
Fred Chasen
6b16ebe9d0
Tidy up Locations
2017-07-20 15:57:58 -04:00
Fred Chasen
ef2a0771c6
Version bump to 0.3.40
2017-07-11 15:35:24 -04:00
Fred Chasen
ca6e2d12a3
Merge pull request #638 from futurepress/relocated_event
...
Relocated event
2017-07-11 12:20:09 -04:00
Fred Chasen
3f4d7bbbf2
Added relocated event
2017-07-10 17:25:26 -04:00
Fred Chasen
aa9c2535d9
Fix min image size, locationOf no longer uses scrollX / Y
2017-07-07 13:43:52 -04:00
Fred Chasen
661d4d77d1
Add metatags for annotations
2017-07-06 17:53:48 -04:00
Fred Chasen
fdf7fda0d9
Include url-polyfill by default, fix linear default to yes
2017-07-03 14:16:32 -04:00
Fred Chasen
2caf88543b
Merge branch 'v0.3' of https://github.com/futurepress/epub.js into v0.3
2017-06-28 20:55:54 -04:00
Fred Chasen
46f1e4ab72
Version bump to 0.3.38
2017-06-28 20:49:02 -04:00
Fred Chasen
307c4ea3a8
Merge pull request #636 from futurepress/respect_linear
...
Respect linear in spine
2017-06-28 20:47:43 -04:00
Fred Chasen
101af4f0f4
Respect linear in spine
2017-06-28 20:40:55 -04:00
Sunil-bb
9131777fa3
Fix for https://github.com/futurepress/epub.js/issues/537 ( #550 )
...
* Fix for https://github.com/futurepress/epub.js/issues/537
Following are the changes for getting IE and Firefox working:
• src doc is not supported in IE which was used to render the page content. Now changed the condition if src doc is supported or not and if not we are writing html string to the iframe using iframe.write api.
• Was using page response as xml(responseXML property of xhr), which was creating issue of self closing tags in IE and page was not getting rendered.
Now we have done changes to make use of string output of response to render(using responseText property of xhr) which don't have self closing tags.
• We were not able to load the css and js present in the page contents if they carried a relative URL.
To fix it we have added base tag into the html head so that the js and css links can be found.
• Was using treewalker dom api. In IE expects that acceptNode param should be a function but other browsers expects it to be an object. We have fixed it .
• treewalker dom api has problem with IE if we are passing a text node as root node(throws exception on treewalker.nextNode(), other browsers it returns null). Have added a condition to fix it(if text node do not create treewalker)
* Review change: removed base tag as its being added using hook
* PR changes: reverted the request method implementation and xmlSerialization implementation
* reverted the request method changes to return the response object, now xml is returned
* Updated the condition for IE to use xmldom
Review comment change: To resolve IE self closing tag issue(which causes rendering issue in IE), made use of xmldom npm package.
2017-06-28 20:37:38 -04:00
Fred Chasen
fd9510f190
version bump to 0.3.37
2017-06-17 13:33:46 -04:00
Fred Chasen
dfbc15ab17
Merge pull request #625 from livrereader/v0.3
...
Implement section#find() in v0.3
2017-06-17 13:33:08 -04:00
Fred Chasen
a2e04ce277
add font override for themes, use text size for resize detection
2017-06-17 13:31:56 -04:00
Jeremy Dormitzer
3e63ac4970
Use alice epub for section#find() tests
2017-06-16 20:51:56 -04:00
Jeremy Dormitzer
4820ab48ab
Remove moby dick test epub
2017-06-16 20:51:37 -04:00
Jeremy Dormitzer
5fed4efcd8
Remove section#textSprint() and use sprint from core utils instead
2017-06-16 20:36:44 -04:00
Fred Chasen
ed3250e95b
Reset window scroll position after viewport change
2017-06-16 15:15:17 -04:00
Fred Chasen
8c7f7ac868
version bump to 0.3.36
2017-06-16 13:52:18 -04:00
Fred Chasen
85eda9078b
Merge pull request #633 from futurepress/annotations
...
Add annotation manager in Rendition
2017-06-16 13:48:35 -04:00