pablof7z/chardin.js

Xhtml compatibility

jacobalberty opened this issue · 1 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.

done. thanks