(element, options)
| 1263 | // =============================== |
| 1264 | |
| 1265 | var Tooltip = function (element, options) { |
| 1266 | this.type = null |
| 1267 | this.options = null |
| 1268 | this.enabled = null |
| 1269 | this.timeout = null |
| 1270 | this.hoverState = null |
| 1271 | this.$element = null |
| 1272 | this.inState = null |
| 1273 | |
| 1274 | this.init('tooltip', element, options) |
| 1275 | } |
| 1276 | |
| 1277 | Tooltip.VERSION = '3.3.5' |
| 1278 |
nothing calls this directly
no outgoing calls
no test coverage detected