DebugBar Forums
 
 HOME 
 DOWNLOAD 
 BUY 
 DOC / WIKI 
 FORUM 
 CONTACT 
Stay tuned : rss feed

Forum Home


advanced search

You are not logged in.

Announcement

Forums are now closed as we moved them to google groups. You can use the following Google Groups to discuss about DebugBar and IETester products:

#1 2010-09-30 05:48:59

machine
New member

Fails to display a site with excanvas workaround used

Here's my code, which works perfectly well on vanilla IE, but fails on IETester:

Code:

  Init : function() {
    $(document).ready(function() {
      with (Loader) {
        if (typeof(G_vmlCanvasManager) != 'undefined') setTimeout(Make, 500);
        else Make();
      }    
    });
  }(),

It's a fragment of Loader class, which uses canvas element for ajax loading animation.
The browser chooses to run Make() method after specified timeout, but then fails
to create canvas element as vanilla IE does. I've tested it with greater timeout
values, up to 5000, but no joy. The problem occurs with all IE versions.

See http://code.google.com/p/explorercanvas/ for details of excanvas workaround.

Offline