cykod / Quintus

HTML5 Game Engine
http://html5quintus.com
GNU General Public License v2.0
1.41k stars 401 forks source link

Strange Wrapper ID #96

Closed ivars-vids closed 10 years ago

ivars-vids commented 10 years ago

If you Setup Quintus by passing HTML element, the wrapper gets strange ID.

... Q.setup(document.getElementById('quintus'), { ... }) ...

... <div id="[object HTMLCanvasElement]_container" style="width: 550px; margin: 0px auto; position: relative;"> ...

viki53 commented 10 years ago

Solved in commit e3dc5c7fe656543ac6c84da3e41d2c047f51752f, pull request pending. In the meantime, edit quintus-all.js (line 1381) :

Q.wrapper.id = Q.el.id + '_container';