Output Version Dojo

I am new to Dojo tools. There are certain problems that I would like to get enlightened (I searched Google, but I did not have suitable and satisfactory answers)

  • I have dojo.js (possibly uncompressed dojo.js loaded) in my already running application (developed by another software developer). How do I know which version of dojo.js it has downloaded and is using right now? (He was not commented. I checked)

  • a) While I try to launch my application in IE-8 (opening a popup window with one click of a button), I get an error message pointing to this line of code

    if (dojo.isIE && window.location.protocol === "File:") Note. Its work works fine in IE6, but the problem is in IE8 and even more specific JS error is displayed only the first time I click the button.

    b) Is it true that Dojo 1.3 and higher is the best and stable release for IE8?

+7
internet-explorer-8 dojo
source share
2 answers
  • DOJO version: var foo: String = dojo.version.toString ();
  • a. You should find the IE8 compatibility version. DOJO API Validation API

    b. It is always recommended that you check the documentation (which, unfortunately, is not running) for these problems.

+12
source share

See the Dojo 1.3 release notes for support for IE8. Dojo usually tries to support the latest browsers during each version. Dojo is close to release 1.5, so you should start with the latest version.

+1
source share

All Articles