0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00

trigger 'affixed.bs.affix' instead of 'affixed'

Original is triggering `affixed` not `affixed.bs.affix`, only `.on('affixed.bs.affix', ...)` also catch `affixed` event.

Closes #13998.
This commit is contained in:
Wing 2014-07-01 10:12:46 +08:00 committed by Chris Rebert
parent 13426c18a3
commit 48b822db40

View File

@ -83,7 +83,7 @@
this.$element
.removeClass(Affix.RESET)
.addClass(affixType)
.trigger($.Event(affixType.replace('affix', 'affixed')))
.trigger($.Event(affixType.replace('affix', 'affixed') + '.bs.affix'))
if (affix == 'bottom') {
this.$element.offset({