Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Well I am also having the same problem. So the best I've come up with adding the extra method in javascript.</p> <pre><code> if (!Array.prototype.indexOf) { Array.prototype.indexOf = function(elt /*, from*/) { var len = this.length; var from = Number(arguments[1]) || 0; from = (from &lt; 0) ? Math.ceil(from) : Math.floor(from); if (from &lt; 0) from += len; for (; from &lt; len; from++) { if (from in this &amp;&amp; this[from] === elt) return from; } return -1; }; } </code></pre> <p>This will solve the indexOf problem, however that presents another issue. The lastest release seems to add get"Property"() and set"Property"().</p> <p>My "Guess" is some of the inner workings of kinecticJS using this line of code:</p> <pre><code> this.context = this.element.getContext('2d'); </code></pre> <p>where as the line "In my humble opinion" should be</p> <pre><code> this.setContext(this.getElement().getContext('2d')); </code></pre> <p>My other "Guess" is this can't be fixed by changing a few lines of code. I am not entirely sure on this though. I have just started to look at the issue. I might sugguest downgrading versions, but I am not sure if that will fix the problem or not. </p> <p>Update:</p> <p>So looking a little further, I found this post <a href="https://stackoverflow.com/questions/9307159/htmlcanvas-getcontext-is-not-a-supported-property-or-method">HTMLCanvas &#39;getContext&#39; is not a supported property or method</a> Which means none of my previous "Guesses" are correct. Summarizing the post above all you need is this line in your html head data:</p> <pre><code>&lt;meta http-equiv="X-UA-Compatible" content="chrome=1, IE=edge"&gt; </code></pre> <p>This fixes the problem i have having in IE (Version 9.0.8112.16421)</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