kimtuck

Results 12 comments of kimtuck

Update: On IE, the complete image is scaled to fit the screen. On Firefox, the image is scaled to take up the entire width of the screen; the image is...

The wrapping div (the first child of the tag does not have a sizing css property. If I manually add "height: 100%" then the cover image scales correctly on all...

At Bibliotheca, I took the approach generally recommended by Adobe -- For each section of the book, determine the number of bytes (this is generally available if the book is...

Not sure what you meant there; should I ask JCCR if he's addressed this issue?

I am experiencing the same issue as describe above, I believe. Using the most recent chrome browser on an IPad (IoS 9.3.5), a hybrid app using readium-js-viewer master branch, the...

I have written a plugin (with a few small hooks into the fetching logic) that will allow you to replace the built-in resource fetchers with your own custom fetchers. I'm...

Hi everyone, I have written a plugin for resource fetching that allows you to create your own resource fetcher; I'll be posting that as a pull request in a couple...

Hi Daniel, I want to give you some background on these various pull requests and issues that I’ve posted. Bibliotheca (http://www.bibliotheca.com) is a leading provider of both physical and ebook...

I especially like the parens; (a === b) ? 1 : 2 is easier for me to read than a === b ? 1 : 2. Can we have a...

Just for an example; in my code: >(vm.inputModel && vm.inputModel < vm.inputNumberMin)? false : true is converted by prettier to >vm.inputModel && vm.inputModel < vm.inputNumberMin ? false : true which...