()
| 1056 | $tip.removeClass('in') |
| 1057 | |
| 1058 | function removeWithAnimation() { |
| 1059 | var timeout = setTimeout(function () { |
| 1060 | $tip.off($.support.transition.end).remove() |
| 1061 | }, 500) |
| 1062 | |
| 1063 | $tip.one($.support.transition.end, function () { |
| 1064 | clearTimeout(timeout) |
| 1065 | $tip.remove() |
| 1066 | }) |
| 1067 | } |
| 1068 | |
| 1069 | $.support.transition && this.$tip.hasClass('fade') ? |
| 1070 | removeWithAnimation() : |