Taxonomy Controls & IE11

We found that the taxonomy controls don’t load in IE11 with Rhythmyx versions 7.2 or 7.3. Had to follow the instructions here http://stackoverflow.com/questions/20285864/jstree-xml-data-plugin-not-working-in-ie11
Basically in jquery.jstree.rev236-taxonomy.js find the line:

if (window.ActiveXObject)

and replace it with:

if (window.ActiveXObject !== undefined || "ActiveXObject" in window)

Thanks Brian,

We will test that out in the other browsers and include this update in the next patch. We also updated the Publishing tabs for an IE11 compatibility view issue as will which will be in the next patch.

-n

Thanks Nate