(element, options)
| 1271 | // =============================== |
| 1272 | |
| 1273 | var Tooltip = function (element, options) { |
| 1274 | this.type = null |
| 1275 | this.options = null |
| 1276 | this.enabled = null |
| 1277 | this.timeout = null |
| 1278 | this.hoverState = null |
| 1279 | this.$element = null |
| 1280 | this.inState = null |
| 1281 | |
| 1282 | this.init('tooltip', element, options) |
| 1283 | } |
| 1284 | |
| 1285 | Tooltip.VERSION = '3.3.7' |
| 1286 |