Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    IE11 - execScript is deprecated. Still used in ISC_Core.js.

    There are several places execScript is used in ISC_Core.js when IE is detected as the browser. Checked in nightly 8.3 and 9.0 builds.

    execScript is not supported in IE11 in edge document mode see http://msdn.microsoft.com/en-us/library/ie/bg182625(v=vs.85).aspx#legacyAPIs.

    For now I have mapped execScript to eval i.e.;

    Code:
    if (isc.Browser.isIE && window.execScript == undefined)
        window.execScript = window.eval;
    Will there be a proper fix coming in smartclient?

    #2
    Yesterday the Microsoft updates installed IE11 on my computer and now I am also seeing this problem (SmartClient_v90p_2013-11-10_Pro). I would appreciate a response from Isomorphic indicating that a fix is in the pipeline.

    Andrew

    Comment


      #3
      Builds of 8.3 and beyond have now switched to using a different approach that works with IE11.

      Older builds will not be updated (they have other issues, even with IE9).

      Comment


        #4
        Will showcase page be updated with the fix?

        Comment


          #5
          If you mean the online Showcase, yes, at some point.

          If you mean the Showcase you can run from your SDK, there is nothing to specifically fix in the Showcase, it will simply use the fixed libraries if you download a build that has it.

          Comment


            #6
            Yes I'm mean the online one.

            Comment

            Working...
            X