Uploaded image for project: 'CMS'
  1. CMS
  2. CMS-10004

Can't acces to BO with IE11 & FF60

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Major Major
    • 4.3.0
    • None
    • None
    • None
    • 4.3 M2

      impossible de se connecter au BO avec IE11

          [CMS-10004] Can't acces to BO with IE11 & FF60

          oral validation by glefebvre and cedric

          Raphaël Franchet added a comment - oral validation by glefebvre and cedric

          FF60 does not work anymore either

          Due to closure upgrade.

          February 15, 2019 (v20190215)
          ES_2019 feature: unescaped unicode line and paragraph separators in string literals are now supported https://github.com/tc39/proposal-json-superset

          Raphaël Franchet added a comment - FF60 does not work anymore either Due to closure upgrade. February 15, 2019 (v20190215) ES_2019 feature: unescaped unicode line and paragraph separators in string literals are now supported https://github.com/tc39/proposal-json-superset

          We need to understand why, but recent works on minimizer was backported in 4.2 and 4.2 still works with IE11 => not so urgent

          Raphaël Franchet added a comment - We need to understand why, but recent works on minimizer was backported in 4.2 and 4.2 still works with IE11 => not so urgent

          This is due to the minimization of the good old AdvancedSearchParser.js
          The following code

          if (ch === "\r" || ch === "\u2028" || ch === "\u2029")

          was previouly minimized like this

          if(ch==="\r"||ch==="\u2028"||ch==="\u2029")

          and now

          if(ch==="\r"||ch===" "||ch===" ")

          where the spaces are the real characters

          I vote that this is due to java11... ?

          Raphaël Franchet added a comment - This is due to the minimization of the good old AdvancedSearchParser.js The following code if (ch === "\r" || ch === "\u2028" || ch === "\u2029" ) was previouly minimized like this if (ch=== "\r" ||ch=== "\u2028" ||ch=== "\u2029" ) and now if (ch=== "\r" ||ch=== " " ||ch=== " " ) where the spaces are the real characters I vote that this is due to java11... ?

            Unassigned Unassigned
            tberge Thibaut Bergé (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: