understanding $.event.special.bsTransitionEnd
hey guys was just going through the source of transition.js and came across the following lines of code :
- $.event.special.bsTransitionEnd = {
- bindType: $.support.transition.end,
- delegateType: $.support.transition.end,
- handle: function (e) {
- if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
- }
- }
I know i will probably have to go read a bunch of articles before i actually understand whats happening in there , but can somebody give me a general idea of what really is going on in there ?
these lines of code can also be found on
git .
Thank you.
Gautam.