Link: http://new.floorbase.nl
Problem: With the first load in IE9, the canvas positions aren’t right. But after opening console or change mode, its position is correct.
First start screen
After opening console or change mode
How can I fix this problem?


You have a
console.logstatements in your js file. IE natively doesn’t understandconsole.logbecause it doesn’t have a console and hence the javascript breaks. But when the console is invoked(I am guessing developer tools) the console.log statements are run.All you have to do is remove or comment out the
console.logstatements.