tooltip.js 13.4 KB
Newer Older
1
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
2
 * Bootstrap: tooltip.js v3.1.1
3
 * http://getbootstrap.com/javascript/#tooltip
4
 * Inspired by the original jQuery.tipsy by Jason Frame
5
 * ========================================================================
6
 * Copyright 2011-2014 Twitter, Inc.
7
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
8
 * ======================================================================== */
Jacob Thornton's avatar
Jacob Thornton committed
9

10

Zlatan Vasović's avatar
Zlatan Vasović committed
11
12
+function ($) {
  'use strict';
13

fat's avatar
fat committed
14
15
  // TOOLTIP PUBLIC CLASS DEFINITION
  // ===============================
16

17
  var Tooltip = function (element, options) {
fat's avatar
fat committed
18
19
20
21
22
23
24
    this.type       =
    this.options    =
    this.enabled    =
    this.timeout    =
    this.hoverState =
    this.$element   = null

25
    this.init('tooltip', element, options)
26
27
  }

fat's avatar
fat committed
28
  Tooltip.DEFAULTS = {
Zlatan Vasović's avatar
Zlatan Vasović committed
29
30
31
    animation: true,
    placement: 'top',
    selector: false,
32
    template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
Zlatan Vasović's avatar
Zlatan Vasović committed
33
34
35
36
    trigger: 'hover focus',
    title: '',
    delay: 0,
    html: false,
37
38
39
40
41
    container: false,
    viewport: {
      selector: 'body',
      padding: 0
    }
fat's avatar
fat committed
42
  }
43

fat's avatar
fat committed
44
  Tooltip.prototype.init = function (type, element, options) {
45
46
47
48
49
    this.enabled   = true
    this.type      = type
    this.$element  = $(element)
    this.options   = this.getOptions(options)
    this.$viewport = this.options.viewport && $(this.options.viewport.selector || this.options.viewport)
50

fat's avatar
fat committed
51
    var triggers = this.options.trigger.split(' ')
52

fat's avatar
fat committed
53
54
55
56
57
58
    for (var i = triggers.length; i--;) {
      var trigger = triggers[i]

      if (trigger == 'click') {
        this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
      } else if (trigger != 'manual') {
59
60
        var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin'
        var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
fat's avatar
fat committed
61

Jacob Thornton's avatar
Jacob Thornton committed
62
        this.$element.on(eventIn  + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
fat's avatar
fat committed
63
        this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
64
      }
fat's avatar
fat committed
65
66
67
68
69
70
71
72
73
74
75
76
77
    }

    this.options.selector ?
      (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
      this.fixTitle()
  }

  Tooltip.prototype.getDefaults = function () {
    return Tooltip.DEFAULTS
  }

  Tooltip.prototype.getOptions = function (options) {
    options = $.extend({}, this.getDefaults(), this.$element.data(), options)
78

fat's avatar
fat committed
79
80
    if (options.delay && typeof options.delay == 'number') {
      options.delay = {
Zlatan Vasović's avatar
Zlatan Vasović committed
81
82
        show: options.delay,
        hide: options.delay
fat's avatar
fat committed
83
      }
84
85
    }

fat's avatar
fat committed
86
87
    return options
  }
88

Jacob Thornton's avatar
Jacob Thornton committed
89
  Tooltip.prototype.getDelegateOptions = function () {
fat's avatar
fat committed
90
    var options  = {}
Jacob Thornton's avatar
Jacob Thornton committed
91
    var defaults = this.getDefaults()
92

fat's avatar
fat committed
93
94
    this._options && $.each(this._options, function (key, value) {
      if (defaults[key] != value) options[key] = value
fat's avatar
fat committed
95
    })
96

Jacob Thornton's avatar
Jacob Thornton committed
97
98
99
100
    return options
  }

  Tooltip.prototype.enter = function (obj) {
fat's avatar
fat committed
101
    var self = obj instanceof this.constructor ?
Jacob Thornton's avatar
Jacob Thornton committed
102
      obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
103

Jacob Thornton's avatar
Jacob Thornton committed
104
    clearTimeout(self.timeout)
105

106
107
    self.hoverState = 'in'

Jacob Thornton's avatar
Jacob Thornton committed
108
109
    if (!self.options.delay || !self.options.delay.show) return self.show()

110
    self.timeout = setTimeout(function () {
fat's avatar
fat committed
111
112
113
      if (self.hoverState == 'in') self.show()
    }, self.options.delay.show)
  }
114

fat's avatar
fat committed
115
116
  Tooltip.prototype.leave = function (obj) {
    var self = obj instanceof this.constructor ?
Jacob Thornton's avatar
Jacob Thornton committed
117
      obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
fat's avatar
fat committed
118

Jacob Thornton's avatar
Jacob Thornton committed
119
    clearTimeout(self.timeout)
fat's avatar
fat committed
120

121
122
    self.hoverState = 'out'

fat's avatar
fat committed
123
    if (!self.options.delay || !self.options.delay.hide) return self.hide()
124

125
    self.timeout = setTimeout(function () {
fat's avatar
fat committed
126
127
128
      if (self.hoverState == 'out') self.hide()
    }, self.options.delay.hide)
  }
129

fat's avatar
fat committed
130
  Tooltip.prototype.show = function () {
Chris Rebert's avatar
Chris Rebert committed
131
    var e = $.Event('show.bs.' + this.type)
132

fat's avatar
fat committed
133
134
    if (this.hasContent() && this.enabled) {
      this.$element.trigger(e)
135

fat's avatar
fat committed
136
      if (e.isDefaultPrevented()) return
137
      var that = this;
138

fat's avatar
fat committed
139
      var $tip = this.tip()
Yohn's avatar
Yohn committed
140

fat's avatar
fat committed
141
      this.setContent()
142

fat's avatar
fat committed
143
      if (this.options.animation) $tip.addClass('fade')
144

fat's avatar
fat committed
145
146
147
      var placement = typeof this.options.placement == 'function' ?
        this.options.placement.call(this, $tip[0], this.$element[0]) :
        this.options.placement
148

149
150
151
152
      var autoToken = /\s?auto?\s?/i
      var autoPlace = autoToken.test(placement)
      if (autoPlace) placement = placement.replace(autoToken, '') || 'top'

fat's avatar
fat committed
153
154
155
      $tip
        .detach()
        .css({ top: 0, left: 0, display: 'block' })
156
        .addClass(placement)
fat's avatar
fat committed
157
158
159
160
161
162
163

      this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)

      var pos          = this.getPosition()
      var actualWidth  = $tip[0].offsetWidth
      var actualHeight = $tip[0].offsetHeight

164
      if (autoPlace) {
165
        var orgPlacement = placement
166
167
168
169
170
171
172
        var $parent      = this.$element.parent()
        var parentDim    = this.getPosition($parent)

        placement = placement == 'bottom' && pos.top   + pos.height       + actualHeight - parentDim.scroll > parentDim.height ? 'top'    :
                    placement == 'top'    && pos.top   - parentDim.scroll - actualHeight < 0                                   ? 'bottom' :
                    placement == 'right'  && pos.right + actualWidth      > parentDim.width                                    ? 'left'   :
                    placement == 'left'   && pos.left  - actualWidth      < parentDim.left                                     ? 'right'  :
173
174
175
176
177
178
179
                    placement

        $tip
          .removeClass(orgPlacement)
          .addClass(placement)
      }

180
      var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
fat's avatar
fat committed
181

fat's avatar
fat committed
182
      this.applyPlacement(calculatedOffset, placement)
183
      this.hoverState = null
184
185
186
187
188
189

      var complete = function() {
        that.$element.trigger('shown.bs.' + that.type)
      }

      $.support.transition && this.$tip.hasClass('fade') ?
190
191
192
193
        $tip
          .one($.support.transition.end, complete)
          .emulateTransitionEnd(150) :
        complete()
194
    }
fat's avatar
fat committed
195
  }
196

197
  Tooltip.prototype.applyPlacement = function (offset, placement) {
fat's avatar
fat committed
198
    var replace
fat's avatar
fat committed
199
200
201
    var $tip   = this.tip()
    var width  = $tip[0].offsetWidth
    var height = $tip[0].offsetHeight
202

203
    // manually read margins because getBoundingClientRect includes difference
fat's avatar
fat committed
204
205
206
207
208
209
210
211
212
    var marginTop = parseInt($tip.css('margin-top'), 10)
    var marginLeft = parseInt($tip.css('margin-left'), 10)

    // we must check for NaN for ie 8/9
    if (isNaN(marginTop))  marginTop  = 0
    if (isNaN(marginLeft)) marginLeft = 0

    offset.top  = offset.top  + marginTop
    offset.left = offset.left + marginLeft
213

214
215
    // $.fn.offset doesn't round pixel values
    // so we use setOffset directly with our own function B-0
Kevin Sawicki's avatar
Kevin Sawicki committed
216
    $.offset.setOffset($tip[0], $.extend({
217
218
219
220
221
222
223
224
225
      using: function (props) {
        $tip.css({
          top: Math.round(props.top),
          left: Math.round(props.left)
        })
      }
    }, offset), 0)

    $tip.addClass('in')
226

fat's avatar
fat committed
227
    // check to see if placing tip in new offset caused the tip to resize itself
fat's avatar
fat committed
228
229
    var actualWidth  = $tip[0].offsetWidth
    var actualHeight = $tip[0].offsetHeight
fat's avatar
fat committed
230

fat's avatar
fat committed
231
    if (placement == 'top' && actualHeight != height) {
fat's avatar
fat committed
232
      offset.top = offset.top + height - actualHeight
fat's avatar
fat committed
233
234
    }

235
    var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)
236

237
238
    if (delta.left) offset.left += delta.left
    else offset.top += delta.top
239

240
241
242
    var arrowDelta          = delta.left ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight
    var arrowPosition       = delta.left ? 'left'        : 'top'
    var arrowOffsetPosition = delta.left ? 'offsetWidth' : 'offsetHeight'
243

244
245
    $tip.offset(offset)
    this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], arrowPosition)
fat's avatar
fat committed
246
  }
247

248
  Tooltip.prototype.replaceArrow = function (delta, dimension, position) {
XhmikosR's avatar
XhmikosR committed
249
    this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + '%') : '')
fat's avatar
fat committed
250
  }
251

fat's avatar
fat committed
252
253
254
  Tooltip.prototype.setContent = function () {
    var $tip  = this.tip()
    var title = this.getTitle()
Jacob Thornton's avatar
Jacob Thornton committed
255

fat's avatar
fat committed
256
257
258
    $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
    $tip.removeClass('fade in top bottom left right')
  }
259

fat's avatar
fat committed
260
261
262
  Tooltip.prototype.hide = function () {
    var that = this
    var $tip = this.tip()
263
    var e    = $.Event('hide.bs.' + this.type)
264

265
266
    function complete() {
      if (that.hoverState != 'in') $tip.detach()
267
      that.$element.trigger('hidden.bs.' + that.type)
268
    }
Jacob Thornton's avatar
Jacob Thornton committed
269

fat's avatar
fat committed
270
    this.$element.trigger(e)
271

fat's avatar
fat committed
272
    if (e.isDefaultPrevented()) return
273

fat's avatar
fat committed
274
275
276
    $tip.removeClass('in')

    $.support.transition && this.$tip.hasClass('fade') ?
277
      $tip
Jacob Thornton's avatar
Jacob Thornton committed
278
        .one($.support.transition.end, complete)
279
        .emulateTransitionEnd(150) :
Jacob Thornton's avatar
Jacob Thornton committed
280
      complete()
281

282
    this.hoverState = null
283

fat's avatar
fat committed
284
285
    return this
  }
286

fat's avatar
fat committed
287
288
289
290
  Tooltip.prototype.fixTitle = function () {
    var $e = this.$element
    if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
      $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
291
    }
fat's avatar
fat committed
292
  }
293

fat's avatar
fat committed
294
295
296
  Tooltip.prototype.hasContent = function () {
    return this.getTitle()
  }
297

298
299
300
301
302
303
304
305
306
  Tooltip.prototype.getPosition = function ($element) {
    $element   = $element || this.$element
    var el     = $element[0]
    var isBody = el.tagName == 'BODY'
    return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : null, {
      scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop(),
      width:  isBody ? $(window).width()  : $element.outerWidth(),
      height: isBody ? $(window).height() : $element.outerHeight()
    }, isBody ? {top: 0, left: 0} : $element.offset())
fat's avatar
fat committed
307
  }
308

309
  Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
fat's avatar
fat committed
310
311
312
313
    return placement == 'bottom' ? { top: pos.top + pos.height,   left: pos.left + pos.width / 2 - actualWidth / 2  } :
           placement == 'top'    ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2  } :
           placement == 'left'   ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
        /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width   }
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342

  }

  Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) {
    var delta = { top: 0, left: 0 }
    if (!this.$viewport) return delta

    var viewportPadding = this.options.viewport && this.options.viewport.padding || 0
    var viewportDimensions = this.getPosition(this.$viewport)

    if (/right|left/.test(placement)) {
      var topEdgeOffset    = pos.top - viewportPadding - viewportDimensions.scroll
      var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight
      if (topEdgeOffset < viewportDimensions.top) { // top overflow
        delta.top = viewportDimensions.top - topEdgeOffset
      } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow
        delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset
      }
    } else {
      var leftEdgeOffset  = pos.left - viewportPadding
      var rightEdgeOffset = pos.left + viewportPadding + actualWidth
      if (leftEdgeOffset < viewportDimensions.left) { // left overflow
        delta.left = viewportDimensions.left - leftEdgeOffset
      } else if (rightEdgeOffset > viewportDimensions.width) { // right overflow
        delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset
      }
    }

    return delta
fat's avatar
fat committed
343
344
  }

fat's avatar
fat committed
345
346
347
348
  Tooltip.prototype.getTitle = function () {
    var title
    var $e = this.$element
    var o  = this.options
349

fat's avatar
fat committed
350
351
    title = $e.attr('data-original-title')
      || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)
352

fat's avatar
fat committed
353
354
    return title
  }
355

fat's avatar
fat committed
356
357
358
  Tooltip.prototype.tip = function () {
    return this.$tip = this.$tip || $(this.options.template)
  }
359

Chris Rebert's avatar
Chris Rebert committed
360
  Tooltip.prototype.arrow = function () {
fat's avatar
fat committed
361
    return this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')
fat's avatar
fat committed
362
  }
363

fat's avatar
fat committed
364
365
366
367
368
  Tooltip.prototype.validate = function () {
    if (!this.$element[0].parentNode) {
      this.hide()
      this.$element = null
      this.options  = null
369
    }
fat's avatar
fat committed
370
  }
371

fat's avatar
fat committed
372
373
374
  Tooltip.prototype.enable = function () {
    this.enabled = true
  }
375

fat's avatar
fat committed
376
377
378
  Tooltip.prototype.disable = function () {
    this.enabled = false
  }
379

fat's avatar
fat committed
380
381
382
  Tooltip.prototype.toggleEnabled = function () {
    this.enabled = !this.enabled
  }
383

fat's avatar
fat committed
384
  Tooltip.prototype.toggle = function (e) {
Jacob Thornton's avatar
Jacob Thornton committed
385
    var self = e ? $(e.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) : this
fat's avatar
fat committed
386
    self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
fat's avatar
fat committed
387
  }
388

fat's avatar
fat committed
389
  Tooltip.prototype.destroy = function () {
fat's avatar
nope    
fat committed
390
    clearTimeout(this.timeout)
391
    this.hide().$element.off('.' + this.type).removeData('bs.' + this.type)
392
393
394
  }


fat's avatar
fat committed
395
396
  // TOOLTIP PLUGIN DEFINITION
  // =========================
397

398
399
  var old = $.fn.tooltip

fat's avatar
fat committed
400
  $.fn.tooltip = function (option) {
401
    return this.each(function () {
fat's avatar
fat committed
402
      var $this   = $(this)
403
      var data    = $this.data('bs.tooltip')
fat's avatar
fat committed
404
405
      var options = typeof option == 'object' && option

fat's avatar
fat committed
406
      if (!data && option == 'destroy') return
407
      if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
408
409
      if (typeof option == 'string') data[option]()
    })
410
411
  }

412
  $.fn.tooltip.Constructor = Tooltip
Jacob Thornton's avatar
Jacob Thornton committed
413

414

fat's avatar
fat committed
415
416
  // TOOLTIP NO CONFLICT
  // ===================
417
418
419
420
421
422

  $.fn.tooltip.noConflict = function () {
    $.fn.tooltip = old
    return this
  }

423
}(jQuery);