aimacode / aima-javascript

Javascript visualization of algorithms from Russell And Norvig's "Artificial Intelligence - A Modern Approach"
http://aimacode.github.io/aima-javascript/
MIT License
538 stars 216 forks source link

Removed horizontal scroll by simple hack #144

Closed anshumanchak closed 6 years ago

anshumanchak commented 6 years ago

Modified style.css file to edit the body tag. That is, set the "overflow-x" attribute to hidden.

anshumanchak commented 6 years ago

"3 Solving Problems By Searching" page still had the issue of horizontal scroll, so it needed a fix.

redblobgames commented 6 years ago

This hides the problem without trying to understand why the problem is happening or trying to fix the actual cause of it.

anshumanchak commented 6 years ago

@redblobgames You're right. Thanks for the advice. I'll try to identify the root cause and fix that.