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 know IE10 is becoming less relevant with every passing day, but I thought this was worth mentioning since docsify lists IE10 as an officially supported browser.
The error is caused by the use of Object.assign which is not supported by IE10 (line 20 in pagination.js):
There are more elegant ways to merge objects, but the above code was intended as a quick test to see if replacing Object.assign would bring IE10 compatibility. The result is that IE10 no longer throws an error, but the page navigation is never rendered.
Usually I would explore more and try to solve the problem, but I am afraid I will be unable to do so for a few more days. Posting the issue here in case someone else wants to take on the task.
Thanks!
The text was updated successfully, but these errors were encountered:
I know IE10 is becoming less relevant with every passing day, but I thought this was worth mentioning since docsify lists IE10 as an officially supported browser.
The error is caused by the use of
Object.assign
which is not supported by IE10 (line 20 inpagination.js
):I made a quick fix by replacing the above line with the following:
There are more elegant ways to merge objects, but the above code was intended as a quick test to see if replacing
Object.assign
would bring IE10 compatibility. The result is that IE10 no longer throws an error, but the page navigation is never rendered.Usually I would explore more and try to solve the problem, but I am afraid I will be unable to do so for a few more days. Posting the issue here in case someone else wants to take on the task.
Thanks!
The text was updated successfully, but these errors were encountered: