Détail du package

viewer

box19.5k0.10.11

A viewer for documents converted with the Box View API

box, box view, crocodoc, view api

readme

Build Status Project Status

Viewer.js

A viewer for documents converted with the Box View API.

Contents

Quick Start

Get the Source

You can find the pre-built development and production source files in the dist/ directory in this repository.

Viewer.js is available on npm and Bower:

npm install viewer
bower install viewer

All stable versions of viewer.js are hosted on CloudFlare's CDN, cdnjs. The unminified versions are available through the following URLs:

//cdnjs.cloudflare.com/ajax/libs/viewer.js/<VERSION>/crocodoc.viewer.css
//cdnjs.cloudflare.com/ajax/libs/viewer.js/<VERSION>/crocodoc.viewer.js

and the minified versions through:

//cdnjs.cloudflare.com/ajax/libs/viewer.js/<VERSION>/crocodoc.viewer.min.css
//cdnjs.cloudflare.com/ajax/libs/viewer.js/<VERSION>/crocodoc.viewer.min.js

For additional information, please see the cdnjs website.

v0.10.8

Development

Production

Loading a Simple Viewer

Crocodoc.createViewer(element, config)

Example

<link rel="stylesheet" href="crocodoc.viewer.min.css" />
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="crocodoc.viewer.min.js"></script>
<div class="viewer" style="height: 400px"></div>
<script type="text/javascript">
    var viewer = Crocodoc.createViewer('.viewer', {
        url: 'https://view-api.box.com/1/sessions/3c6abc0dcf35422e8353cf9c27578d5c/assets/'
    });
    viewer.load();
</script>

Logos

As per section 2.6 of our agreement of our API terms, we require that all apps using Box View with the Standard tier conspicuously display a Box logo when displaying Box View documents. We have included an approved logo within this repository. If your Box View plan permits custom branding of the viewer, please refer to Logo Options for instructions on how to build the viewer without the Box logo or with a custom logo.

Documentation

Library Methods

Crocodoc.createViewer(element, config)

Create and return a viewer instance initialized with the given parameters.

  • element the DOM element to initialize the viewer into
    • string: a query selector
    • Element: a DOM Element
    • Object: a jQuery object
  • config the configuration object

Crocodoc.addPlugin(pluginName, creatorFn)

Register a new plugin with the framework. See Plugins for more details.

  • pluginName the name of the plugin
  • creatorFn a function that creates and returns an instance of the plugin (which should be an object) when called

Viewer Config

The only required config parameter is url. All others are optional.

url (required)

The url parameter specifies the base URL where the document assets are located. Viewer.js will look for document assets (including info.json, stylesheet.css, etc) in this path.

layout

The layout parameter specifies the layout mode to use. Default Crocodoc.LAYOUT_VERTICAL. See Setting the Layout Mode for available layouts.

zoom

The zoom parameter specifies the initial zoom level to use. Default Crocodoc.ZOOM_AUTO.

Possible values:

  • Crocodoc.ZOOM_FIT_WIDTH - zooms to fit the width of the (largest) page within the viewport
  • Crocodoc.ZOOM_FIT_HEIGHT - zooms to fit the height of the (largest) page within the viewport
  • Crocodoc.ZOOM_AUTO - zooms to best fit the document within the viewport

page

The page parameter specifies the initial page number to show when the document loads. Default: 1.

enableTextSelection

The enableTextSelection parameter specifies whether or not users can select text. If true, users can select text. Default: true. Note: text selection is not supported in IE 8 see Browser Support for more information.

enableLinks

The enableLinks parameter specifies whether or not hyperlinks are enabled. If true, hyperlinks are enabled. Default: true.

enableDragging

The enableDragging parameter specifies whether or not dragging is enabled. If true, click-and-drag scrolling/panning will be enabled for this document. Default: false. NOTE: text selection is not fully supported when dragging is enabled. It is recommended that you disable text selection if you plan to enable dragging.

plugins

The plugins parameter allows you to specify a map of plugin names to their respective configs. Plugin names specified in this object will be loaded when the viewer is initialized. See Plugins for more details.

Example:

{
    plugins: {
        // my-plugin will be initialized with the following config
        'my-plugin': {
            foo: 1,
            bar: 2
        }
    }
}

queryParams

The queryParams parameter allows you to specify query string parameters to append to each asset request (eg., info.json or page-1.svg). Can be an object or string. Default: null.

Examples:

// as a string
{
    queryParams: 'hello=world&foo=bar'
}

// as an object
{
    queryParams: {
        hello: 'world',
        foo: ['bar', 'baz']
    }
}

useWindowAsViewport

The useWindowAsViewport parameter allows you to specify whether to use the browser window as the viewport for the document. This is useful when the document should take up the entire browser window (e.g., on mobile devices). Use this option on mobile devices to allow the browser to auto-hide browser chrome when scrolling. Default: false.

dataProviders

The dataProviders parameter allows you override default data providers by specifying names of replacement data providers. See data providers for more info.

Example:

{
    dataProviders: {
        // page-svg data provider will be overridden by the 'my-page-svg' data provider
        'page-svg': 'my-page-svg'
    }
}

Viewer Methods

destroy()

The destroy method removes and cleans up the viewer instance.

on(name, handler)

The on method binds an event handler for the specified event name fired by the viewer object. See Event Handling for available events.

off(name[, handler])

The off method unbinds an event handler for the specified event name and handler fired by the viewer object. If handler is not given, unbinds all event handlers on this viewer object with the given name.

scrollTo(page)

The scrollTo method scrolls the viewer to the specified page. The page argument may be one of the following:

  • (number) - scroll the the specified page number
  • Crocodoc.SCROLL_PREVIOUS - scroll to the previous page
  • Crocodoc.SCROLL_NEXT - scroll to the next page

Examples

// scroll to page 2
viewer.scrollTo(2);

// scroll to the next page
viewer.scrollTo(Crocodoc.SCROLL_NEXT);

zoom(val)

The zoom method sets the current zoom level of the document. Possible values:

  • Crocodoc.ZOOM_FIT_WIDTH - zooms to fit the width of the (largest) page within the viewport
  • Crocodoc.ZOOM_FIT_HEIGHT - zooms to fit the height of the (largest) page within the viewport
  • Crocodoc.ZOOM_AUTO - zooms to best fit the document within the viewport
  • Crocodoc.ZOOM_IN - zooms in
  • Crocodoc.ZOOM_OUT - zooms out

Examples

// zoom in
viewer.zoom(Crocodoc.ZOOM_IN);

// zoom to fit width
viewer.zoom(Crocodoc.ZOOM_FIT_WIDTH);

setLayout(mode)

The setLayout method sets the layout mode. See Setting the Layout Mode for available layouts.

Examples

viewer.setLayout(Crocodoc.LAYOUT_PRESENTATION);

Event Handling

The viewer object fires several different events. You can add and remove event listeners using the on and off methods.

Example

// ready event fires when the document metadata has loaded
// and the viewer is ready to be interacted with
viewer.on('ready', function (event) {
    console.log('the viewer is ready, and the document has ' + event.data.numPages + ' pages');
});

Viewer Events

  • asseterror Triggered if any asset fails to load. Event properties:
    • error - the error message
    • resource - the url of the resource that failed to load
    • status - the http status code
  • destroy Triggered when the document viewer is purposely destroyed with the destroy method.
  • fail Triggered if the document fails to load. Event properties:
    • error - the error details
  • ready Triggered as soon as a document becomes viewable. Event properties:
    • page - the current page
    • numPages - total number of pages in the document
  • resize Triggered when the viewer is resized. Event properties:
    • width - the viewport width
    • height - the viewport height
  • scrollstart Triggered when the user starts scrolling. Event properties:
    • scrollTop - the scrollTop position of the viewport
    • scrollLeft - the scrollLeft position of the viewport
  • scrollend Triggered when the user stops scrolling (or when the content stops moving if there is a momentum effect). Event properties:
    • scrollTop - the scrollTop position of the viewport
    • scrollLeft - the scrollLeft position of the viewport
  • zoom Triggered when the zoom value changes. Event properties:
    • zoom - current zoom value
    • zoomMode - current zoom mode (string or null)
    • canZoomOut - whether the viewer is able to zoom out (boolean)
    • canZoomIn - whether the viewer is able to zoom in (boolean)

Page Events

  • pagefocus Triggered whenever a new page is scrolled into view. Event properties:
    • page - page number
    • numPages - total number of pages in the document
    • visiblePages - an array of page numbers that are currently (fully or partially) visible in the viewport
  • pageload Triggered whenever a page is loaded. Event properties:
    • page - page number
  • pageunload Triggered whenever a page is unloaded to improve performance. Event properties:
    • page - page number
  • pagefail Triggered if a page fails to load. Event properties:
    • error - the error details
    • page - page number of the failed page

Setting the Layout Mode

Built-in Layout Modes

You can set a layout initially via the configuration object:

var viewer = Crocodoc.createViewer('.viewer', {
    url: 'https://view-api.box.com/1/sessions/<session_id>/assets/',
    layout: Crocodoc.LAYOUT_HORIZONTAL
});

Or via the setLayout method:

viewer.setLayout(Crocodoc.LAYOUT_PRESENTATION);

The currently supported layouts are:

  • Crocodoc.LAYOUT_VERTICAL Pages are scrolled vertically and arranged into one or more columns depending upon the current zoom.
  • Crocodoc.LAYOUT_VERTICAL_SINGLE_COLUMN Pages are scrolled vertically and arranged into a single column even when zoomed out.
  • Crocodoc.LAYOUT_HORIZONTAL Pages within the viewer are horizontally and arranged into a single row.
  • Crocodoc.LAYOUT_PRESENTATION One page is shown at a time with no scrolling. Custom transitions may be used to switch between pages.
  • Crocodoc.LAYOUT_PRESENTATION_TWO_PAGE Two pages are shown at a time, side by side, with no scrolling. Custom transitions may be used to switch between pages.

Other Layout Modes

The above list are the modes that are included as part of the bundled viewer.js library. Here are some other layout modes that can be included alongside the library to add new layout functionality:

  • 'vertical-two-page' Behaves like Crocodoc.LAYOUT_PRESENTATION_TWO_PAGE for zooming and Crocodoc.LAYOUT_VERTICAL for scrolling (gist).
  • 'presentation-vertical' Behaves like Crocodoc.LAYOUT_PRESENTATION for page layout (e.g., one page visible at a time) and Crocodoc.LAYOUT_VERTICAL for zooming (gist).
  • [Your layout here!] - if you have a layout you'd like to contribute, create a gist like the examples above, and we'd be happy to include it.

Styling Pages

.crocodoc-page and .crocodoc-page-content classes can be used to style pages, but there are some important restrictions:

  • .crocodoc-page: padding should be used to adjust page spacing (don't use margin for this)
  • .crocodoc-page: background should be transparent - use .crocodoc-page-content for changing the background of pages (including adding a background-image, such as a loading indicator)

Examples:

.crocodoc-page {
    /* 40px spacing around all sides of every page */
    padding: 40px;
}
.crocodoc-page {
    /* 40px spacing around the left and right sides of every page */
    padding: 0 40px;
}

/* the following can be used in a layout with pages that are side-by-side to remove spacing in the middle (e.g., custom layout 'vertical-two-page') */
.crocodoc-page {
    padding: 20px;
}
.crocodoc-page:nth-child(even) {
    padding-left: 0;
}
.crocodoc-page:nth-child(odd) {
    padding-right: 0;
}

/* add a box-shadow to pages */
.crocodoc-page-content {
    box-shadow: 1px 1px 2px #000;
}

/* change the background color of pages */
.crocodoc-page-content {
    background-color: papayawhip;
}

/* add a spinner image to loading pages */
.crocodoc-page-loading .crocodoc-page-content {
    background: #FFF url('../images/spinner.gif') center center no-repeat;
}

/* mirror all pages horizontally (?!) */
.crocodoc-page-content {
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

Presentation Transitions

With viewer.js in presentation (Crocodoc.LAYOUT_PRESENTATION) layout mode, it is possible to add custom page transitions using pure CSS. The viewer automatically applies CSS classes to the pages appropriately so that you can write CSS that will affect the current, previous, and next pages, as well as all pages before and after the current page.

To see some examples, look at the CSS files in "presentations" example included with this repo.

The classes available are:

  • .crocodoc-current-page: the current page
  • .crocodoc-preceding-page: the last "current" page (i.e. the page that had the crocodoc-current-page class before the most recent pagefocus event)
  • .crocodoc-page-prev: the previous page
  • .crocodoc-page-next: the next page
  • .crocodoc-page-before: any page before the current page (including the previous page)
  • .crocodoc-page-after: any page after the current page (including the next page)

Realtime Page Streaming

The Box View API conversion pipeline is optimized to minimize time to view the first page of a document. This means that a session can be created and a document can be viewed as soon as page 1 (and some metadata) is finished converting. It is now possible to use viewer.js to view documents as soon as the first page is ready by using the realtime plugin. This plugin makes a connection to the Box View API's realtime channel (a link to which is provided in the urls parameter of the session creation response), which streams updates about the conversion progress of a document.

Plugins

Plugins are reusable components that can hook into viewer.js instances to add functionality. Plugins are initialized when a viewer instance is created and have their own configuration options.

See /plugins for some plugin examples.

Example:

// add a plugin that tracks how long a user was on each page
Crocodoc.addPlugin('analytics', function (scope) {
    var currentPage,
        startTime,
        config;

    function track(page) {
        var elapsed,
            now = Date.now();
        if (currentPage) {
            elapsed = now - startTime;
            if (typeof config.ontrack === 'function') {
                config.ontrack(currentPage, elapsed / 1000);
            }
        }
        startTime = now;
        currentPage = page;
    }

    return {
        // the messages property tells the viewer which messages this 
        // plugin is interested in
        messages: ['pagefocus'],

        // this onmessage method is called when a message listed above 
        // is broadcast within the viewer instance
        onmessage: function (name, data) {
            // in this case, we are only listening for one message type,
            // so we don't need to do any checking against the name value
            track(data.page);
        },

        // init is called when the viewer is initialized, and the plugin
        // config is passed as a parameter
        init: function (pluginConfig) {
            config = pluginConfig;
        }
    };
});

// When creating the viewer, just include analytics in the plugins config
var viewer = Crocodoc.createViewer('.viewer', {
    url: '/path/to/assets',
    plugins: {
        // config for the analytics plugin
        analytics: {
            ontrack: function (page, seconds) {
                console.log(seconds + 's spent on page ' + page);
            }
        }
    }
});

Data Providers

See the JS architecture overview for information about data providers.

Text Documents

As of v0.10.0, viewer.js supports rendering text-based documents converted by the Box View API. This functionality is in beta until further notice, and many of the page-related API methods, events, and configuration properties in viewer.js will not have any affect on text documents. The viewer will automatically switch into text-based document mode when you provide it with a URL that points to a text document converted with the View API.

Syntax Highlighting

Many source code formats will be converted to HTML for use with viewer.js such that you can enable syntax highlighting. To enable syntax highlighting, simply include a Pygments-compatible CSS stylesheet in the page with your viewer. The Box View iframe viewer uses a stylesheet similar to this one.

Browser Support

Viewer.js is supported in all modern desktop and mobile browsers. It will fall back to raster images in older browsers that do not support SVG.

NOTE: raster fall-back requires that .png representations have already been generated for the converted document.

Contributing

See CONTRIBUTING.md.

Getting Started with the Code

Dev Dependencies

To install the development dependencies, you'll need node and npm. Most node installs come with npm pre-packaged.

Once you have npm, you'll need to install grunt-cli:

npm install -g grunt-cli

Then go to the viewer.js directory and run:

npm install

That's it! You should be setup with development dependencies and ready to go.

Git Hooks

Viewer.js comes with a pre-commit git hook that runs the unit tests before allowing a commit. This is a useful way to make sure you don't accidentally commit code that breaks unit tests. To install the git hook, just run:

./install-githooks.sh

Grunt

  • grunt test - runs jshint and qunit tests against the code
  • grunt doc - runs test and jsdoc to generate documentation in doc/
  • grunt (alias for grunt default) - runs test and concat to build the following files:
    • dist/crocodoc.viewer.js
    • dist/crocodoc.viewer.css
  • grunt build - runs default as well as cssmin and uglify to build the following compressed files (in addition to the files built in grunt default):
    • dist/crocodoc.viewer.min.js
    • dist/crocodoc.viewer.min.css
  • grunt serve - runs a static webserver for viewing examples and qunit tests
    • defaults to port 9000
    • examples: http://localhost:9000/examples
    • tests: http://localhost:9000/test

Logo Options

There is an additional option that can be specified when running grunt tasks: --no-logo. If this flag is added, logos will not be embedded into the resulting CSS file (dist/crocodoc.viewer(.min).css).

If you would like to replace the Box logo with your own, you can simply replace src/images/logo.png and src/images/logo@2x.png with your own logos. Running grunt or grunt build will embed the images into the resulting CSS files.

NOTE: Make sure you are allowed to remove logos before building with this option. For more information, see Logos above.

For more information about the code, see the JS architecture overview

Common Issues

I did everything right! Why am I seeing a blank screen?

  1. If you don't see any errors in the JavaScript console, your viewer's container element might have a height of 0px. Viewer.js does not force a height on its container element, so that needs to be set by the developer (whether it's a percent or explicit pixel value doesn't matter):

     <div class="viewer" style="height: 560px"></div>
    
  2. Are you loading assets from a file:// URL? Many browsers' security policies block these requests, so viewer.js is unable to load assets. To resolve this issue, you can run a local server using grunt serve (see Getting Started with the Code) or save your assets to some remote server for testing.

  3. If you are loading the assets from your own server, but the viewer is on a different origin (hostname), then you must include a CORS HTTP header with the served asset files. The quickest fix is to add the HTTP response header Access-Control-Allow-Origin: * (but you will almost certainly want to be more specific than *, or else to restrict access to your asset files in some other way).

  4. IE 8 and 9 have a bug in the XHR/XDR implementation that causes requests to HTTPS domains to fail if they originate from an HTTP domain (with the error: "Access Denied"). If your domain is running on HTTP, Box View API URLs will fail on IE 8 and 9. At the moment, the View API only responds on HTTPS, so we have no workaround for this issue other than to recommend that you use SSL on your site.

Change Log

See CHANGELOG.md.

Copyright and License

Copyright 2014 Box, Inc. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

changelog

Change Log

Viewer.js uses semantic versioning for its version numbers.


  • 0.10.11
    • Improve chrome rendering issue
  • 0.10.10
    • Fix a bug with useSVG option
  • 0.10.9
    • Add experimental useSVG option
  • 0.10.8
    • Handle 202s/retry-after header in ajax utility
  • 0.10.7
    • Fix #185
    • Fix #178
    • Added CORS info to the 'Common Issues' section of docs
  • 0.10.6
    • Modify the subpx util to wrap around text layer instead of inside
    • Fix #165
    • Fix #174
    • Fix #171
    • Fix realtime tests on travis CI
  • 0.10.5
    • Ignore npm-debug.log
    • Update dev dependencies
    • (internal) Fix CSS link replacement in SVG data provider
  • 0.10.4
  • 0.10.3
    • Fix #152 - calculateVisiblePages bug when viewer is display:none
    • Add better resize-checking and remove polling/requestAnimationFrame
    • Add file size and dist links in readme
    • Fix bug with destroyComponent in a component's destroy method (see #150)
    • Update grunt release command for better release automation
    • Updated README.me with cdnjs information
    • Add configurable viewer and page templates
  • 0.10.2
    • Fix unnecessary horizontal scrollbar in IE 9 when using window as viewport
  • 0.10.1
    • Fix autoloadFirstPage option when conversion is not complete
  • 0.10.0
    • Add support for rendering text-based (non-paged) files
  • 0.9.0
    • Add option to disable auto-loading of first page assets at load()
  • 0.8.0
    • Add support for 2xx response codes in ajax utility
    • Add download plugin
  • 0.7.0
    • Add .crocodoc-preceding-page class for easier transition effects in presentation layout
  • 0.6.1
    • Simplify and add comments to the presentation transition examples
    • Fix #125 - Pages are shifted right in IE 7
    • Fix #124 - JSON is not defined in IE 7
    • Remove npm postinstall script
    • Fix #118 - Error when switching between layouts
    • Fix issue with images not showing up in Safari 6
  • 0.6.0
    • Add support for common JS require() syntax via exports
  • 0.5.6
    • Fix #110 - check for hidden iframe throws for cross-domain frame
    • Fix isCrossDomain check for relative URLs in IE7
    • Fix #106 - text selection styles
    • Fix documentation issues
    • Add slider example
    • Add Crocodoc.getViewer()
    • Fix #100 - text-disabled class not properly applied in IE < 9
  • 0.5.5
    • Fix #93 - "fail" event is never fired when json/css fail to load
    • Fix #94 - isCrossDomain returns false positive in IE
    • Fix errors caused by destroying a viewer while pages are loading
    • Refactor AJAX util to allow headers and data
    • Add url.appendQueryParams()
    • Add getUtilityForTest and getFrameworkForTest
    • Fix #74 - zoom broken for viewer in hidden iframe in Firefox
  • 0.5.4
    • Fix #70 - IE 11 crashes when unloading pages
  • 0.5.3
    • Fix IE9 issue with box-sizing: initial
    • LazyLoader: only load visible pages initially to improve initial load performance
  • 0.5.2
    • Fix issue with optimistic asset prefetching in non-svg browsers (e.g., IE 8)
  • 0.5.1
    • Preload page 1 assets ASAP to reduce time to view page 1.
    • Fix a bug where requests for text layer assets could be duplicated unnecessarily
  • 0.5.0
    • Add realtime plugin
    • Add data providers
    • Fixed some browser warnings
  • 0.4.5
    • Fix #49 - Centering broken if Bootstrap css loaded
    • Fix #40 - Hidden document viewer does not load pages in Firefox
    • Fix #37 - exceptions thrown in AJAX request handler are swallowed
    • Fix #24 - Enable request to local files
  • 0.4.4
    • Fix issue where PNG fallback breaks zooming on mobile devices
    • Add linkclick viewer event
    • Fix an issue in IE 10 where the text layer could lose its font when the same document is loaded multiple times in the lifetime of a page
    • Fix an issue where embedded images don't display in iOS 6.1 Safari
    • Add fullscreen plugin
  • 0.4.3
    • Add npm and bower support
  • 0.4.2
    • Add support for non-native XMLHTTP in IE
    • Simplify DOM structure to improve performance and maintainability
    • Add useWindowAsViewport option to allow mobile optimizations for full-page viewers
    • Fix fullscreen issue in IE11
    • Fix issue where npm install fails when cloned as git submodule
    • Fix issue where empty URL hash causes pages to focus on load in Chrome/Safari
  • 0.4.1
    • Fix a bug with asset preloading
  • 0.4.0
    • Add plugins
    • Add presentation transition examples
    • Improve lazy-loading and preloading of assets
    • Fix an issue with layout (page position calculation)
    • Fix a CORS issue in IE8/9
    • Simplified viewer API
    • Fix an issue with enabling text selection after initializing a viewer with enableTextSelection: false
    • Fix zooming issues in IE7
    • Fix AJAX issue in IE9
    • Fix a page loading bug in IE9 and most mobile devices
    • Many other minor bug fixes
  • 0.3.2
    • Fix an issue with setLayout()
    • Add preloading of SVG content
    • Add fullyVisiblePages property of zoom and pagefocus event data
  • 0.3.1
    • Fix an issue with stylesheet loading in IE 10
    • Fix pageavailable methods to queue and broadcast appropriately if received before viewer is ready
    • Add jQuery.noConflict() support
  • 0.3.0
    • Rename ready option to conversionIsComplete
    • Improve zoom performance and simplify zooming
    • Fix an issue with images in Firefox
    • Add dragging support (via enableDragging)
    • Add support for string values to queryParams option
    • Improve performance on edge-case documents
    • Fix an issue with text highlight color
  • 0.2.0
    • Add examples directory for demos and sample code
    • Add scrollstart and scrollend events
    • Add CORS support for IE 8/9
    • Add CONTRIBUTING.md, CHANGELOG.md, and LICENSE
    • Fix several bugs related to SVG embeds
    • Fix links in IE <= 9
    • Improve rendering performance of complicated documents
    • Remove pageerror event in favor of pagefail and asseterror
    • Auto-retry certain asset requests if they fail
  • 0.1.3
    • Add grunt to replace build.sh
    • Improve memory usage and scrolling performance
    • Fix several bugs with layout, SVG embedding
  • 0.1.2
    • Add support for png fallback in browsers that do not support SVG
    • Add basic support for IE 7 and 8
    • Fix regression that caused pages not to load in Firefox ~20
    • Improve scrolling and page rendering performance
    • Improve error handling for page load errors
    • Fix numerous minor bugs
  • 0.1.1
    • Fix image loading issues in Firefox and Safari
  • 0.1.0
    • Initial alpha release