()
| 1276 | $tip.removeClass('in') |
| 1277 | |
| 1278 | function removeWithAnimation() { |
| 1279 | var timeout = setTimeout(function () { |
| 1280 | $tip.off($.support.transition.end).detach() |
| 1281 | }, 500) |
| 1282 | |
| 1283 | $tip.one($.support.transition.end, function () { |
| 1284 | clearTimeout(timeout) |
| 1285 | $tip.detach() |
| 1286 | }) |
| 1287 | } |
| 1288 | |
| 1289 | $.support.transition && this.$tip.hasClass('fade') ? |
| 1290 | removeWithAnimation() : |