Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents

Downloads

We deploy three versions of the JavaScript library that only differ in the use of the specific GWT Linker.

Excerpt Include
Downloads - KLayJS
Downloads - KLayJS

  • Standard Linker
    I.e. GWT's IFrameLinker that "loads the GWT module in a separate iframe".
  • Custom Linker
    The linker extends GWT's DirectInstallLinker and enables the library to be used with, for instance, Chrome Packaged Apps. According to the javadoc the linker "adds a script tag to the iframe rather than downloading the code as a string and then installing it into the iframe". However, when using this linker a lot of GWT's variables will be added to the global namespace.
  • Web Worker Linker
    The linker allows to use our library with a Web Worker. It removes GWT generations that are not required for our use case, e.g. loading of browser specific permutations. A bower component is available on GitHub (Thanks to automata), a specific example further down on this page.

 

Panel
titleReleases
Near future
Panel
titleNightly Builds
http://rtsys.informatik.uni-kiel.de/~kieler/files/nightly/klayjs/

...

titleBower Component on GitGub (Web Worker)

...



API

This documentation targets the Default Linker and Custom Linker. The Web Worker Linker has a slightly different API, please refer to the GitHub page for more information.

...