pablof7z / chardin.js

Simple overlay instructions for your apps.

Home Page:https://heelhook.github.io/chardin.js/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Xhtml compatibility

jacobalberty opened this issue · comments

I went to use this with a xhtml project and the overlay didn't properly display. changing

if (this.$el.prop('tagName') === "BODY") {

to

if (this.$el.prop('tagName').toUpperCase() === "BODY") {

seems to be the appropriate fix for it.

commented

done. thanks