Closed Bug 1864564 Opened 11 months ago Closed 11 months ago

Add an intervention for sites using legacy esri versions

Categories

(Web Compatibility :: Interventions, enhancement)

Firefox 121
enhancement

Tracking

(Not tracked)

RESOLVED FIXED

People

(Reporter: ksenia, Unassigned)

References

()

Details

We can add an intervention for 3 existing sites we've received so far.

There is a global variable esri, and esri._css.names object that is used to set css styles for the map:

esri._css.names = {
  "transition": "MozTransition",
  "transform": "MozTransform",
  "transformName": "-moz-transform",
  "origin": "MozTransformOrigin",
  "endEvent": "transitionend"
}

overriding this object to the following makes the map function as expected:

{
  "transition": "transition",
  "transform": "transform",
  "transformName": "transform",
  "origin": "transformOrigin",
  "endEvent": "transitionend"
}

Shipped in bug1838842

Status: NEW → RESOLVED
Closed: 11 months ago
Resolution: --- → FIXED
See Also: → 1890328
You need to log in before you can comment on or make changes to this bug.