Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>It doesn't work in IE because it's using the canvas element. <a href="http://code.google.com/p/explorercanvas/" rel="nofollow">Here's a solution for IE and Canvas.</a></p> <p>You first need to download the library located on the link above and then upload the excanvas.js file to your server. Link to it using this code:</p> <pre><code>&lt;!--[if IE]&gt;&lt;script type="text/javascript" src="excanvas.js"&gt;&lt;/script&gt;&lt;![endif]--&gt; </code></pre> <p>You see above conditional comments (also called cond-com) which are only read by Internet Explorer. They check for the existence of Internet Explorer as the browser in use and then include the code in between. In this case, we link to the script we just downloaded (excanvas.js) and include it within the website. Remember, this will only include the script if the browser is Internet Explorer, which is perfect because we don't want users to download a script if they don't need to (if it's supported by their browser already).</p> <p><a href="https://github.com/samizdatco/arbor/issues/5" rel="nofollow">To address the issue of your error "Failed to load script: /arbor.js (nsresult = 0x805303f4)" which I have also duplicated on my own system</a>: the problem seems to be because you're loading a Worker javascript object. This specific object requires that the files in question be hosted either on a local server (through localhost) or through a live web server. The javascript libraries trying to be loaded are currently being loaded through your file structure on your computer, but the code in ArborJS requires these files be hosted in some nature, not just present in your system directory. Try putting everything on the Internet (again, either through a locally hosted server or through a publicly available server) and you should have better luck. Trying to run this script from the files on your computer will not work.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload