You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have observed the following behavior:
In IE and Edge the tour steps will not reappear after they have been hidden.
IE doesn't change the display: none !important style back to display:block.
Changing this line of code: step.popup[0].style.setProperty('display', 'none', 'important');
to step.popup[0].style.setProperty('display', 'none');
Fixes the issue.
The text was updated successfully, but these errors were encountered:
I am using the exact versions of the following:
I have installed this library via: bower
I have observed the following behavior:
In IE and Edge the tour steps will not reappear after they have been hidden.
IE doesn't change the display: none !important style back to display:block.
Changing this line of code:
step.popup[0].style.setProperty('display', 'none', 'important');
to
step.popup[0].style.setProperty('display', 'none');
Fixes the issue.
The text was updated successfully, but these errors were encountered: