in case of a "if structure" prefix is not appended
Closed this issue · 1 comments
simonknoll commented
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' : ''
faucamp commented
Just to clarify, the prefixed line should be (and is now):
animate = this.$element.hasClass('tb-fade') ? 'tb-fade' : ''