()
| 1181 | $tip.removeClass('in') |
| 1182 | |
| 1183 | function removeWithAnimation() { |
| 1184 | var timeout = setTimeout(function () { |
| 1185 | $tip.off($.support.transition.end).detach() |
| 1186 | }, 500) |
| 1187 | |
| 1188 | $tip.one($.support.transition.end, function () { |
| 1189 | clearTimeout(timeout) |
| 1190 | $tip.detach() |
| 1191 | }) |
| 1192 | } |
| 1193 | |
| 1194 | $.support.transition && this.$tip.hasClass('fade') ? |
| 1195 | removeWithAnimation() : |