faucamp/bootstrap_namespace_prefixer

in case of a "if structure" prefix is not appended

Closed this issue · 1 comments

the script does not recognise following line

Line 928 unprefixed
animate = this.$element.hasClass('fade') ? 'fade' : ''
Line 928 prefixed
animate = this.$element.hasClass('tb-fade') ? 'fade' : ''

Just to clarify, the prefixed line should be (and is now):
animate = this.$element.hasClass('tb-fade') ? 'tb-fade' : ''