bootstrap-tooltip.js 9.47 KB
Newer Older
1
/* ===========================================================
Mark Otto's avatar
Mark Otto committed
2
 * bootstrap-tooltip.js v2.3.0
Jon Stevens's avatar
Jon Stevens committed
3
 * http://twitter.github.com/bootstrap/javascript.html#tooltips
4
 * Inspired by the original jQuery.tipsy by Jason Frame
5
 * ===========================================================
Mark Otto's avatar
Mark Otto committed
6
 * Copyright 2012 Twitter, Inc.
Jacob Thornton's avatar
Jacob Thornton committed
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================== */

21

22
23
24
!function ($) {

  "use strict"; // jshint ;_;
25

26

27
28
 /* TOOLTIP PUBLIC CLASS DEFINITION
  * =============================== */
29

30
  var Tooltip = function (element, options) {
31
    this.init('tooltip', element, options)
32
33
  }

34
  Tooltip.prototype = {
35

36
    constructor: Tooltip
37

38
  , init: function (type, element, options) {
39
40
      var eventIn
        , eventOut
41
42
43
        , triggers
        , trigger
        , i
44
45
46
47
48
49

      this.type = type
      this.$element = $(element)
      this.options = this.getOptions(options)
      this.enabled = true

50
51
52
53
54
55
56
57
58
59
60
61
      triggers = this.options.trigger.split(' ')

      for (i = triggers.length; i--;) {
        trigger = triggers[i]
        if (trigger == 'click') {
          this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
        } else if (trigger != 'manual') {
          eventIn = trigger == 'hover' ? 'mouseenter' : 'focus'
          eventOut = trigger == 'hover' ? 'mouseleave' : 'blur'
          this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
          this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
        }
62
63
64
65
66
67
68
      }

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

69
  , getOptions: function (options) {
70
      options = $.extend({}, $.fn[this.type].defaults, this.$element.data(), options)
71
72
73
74
75
76
77
78
79
80
81

      if (options.delay && typeof options.delay == 'number') {
        options.delay = {
          show: options.delay
        , hide: options.delay
        }
      }

      return options
    }

82
  , enter: function (e) {
83
84
      var self = $(e.currentTarget)[this.type](this._options).data(this.type)

85
86
87
88
89
90
91
      if (!self.options.delay || !self.options.delay.show) return self.show()

      clearTimeout(this.timeout)
      self.hoverState = 'in'
      this.timeout = setTimeout(function() {
        if (self.hoverState == 'in') self.show()
      }, self.options.delay.show)
92
93
    }

94
  , leave: function (e) {
95
96
      var self = $(e.currentTarget)[this.type](this._options).data(this.type)

97
      if (this.timeout) clearTimeout(this.timeout)
98
99
100
101
102
103
      if (!self.options.delay || !self.options.delay.hide) return self.hide()

      self.hoverState = 'out'
      this.timeout = setTimeout(function() {
        if (self.hoverState == 'out') self.hide()
      }, self.options.delay.hide)
104
105
106
107
108
    }

  , show: function () {
      var $tip
        , pos
109
110
111
112
        , actualWidth
        , actualHeight
        , placement
        , tp
113
        , e = $.Event('show')
114

115
      if (this.hasContent() && this.enabled) {
116
        this.$element.trigger(e)
117
        if (e.isDefaultPrevented()) return
118
        $tip = this.tip()
Jacob Thornton's avatar
Jacob Thornton committed
119
        this.setContent()
120

Jacob Thornton's avatar
Jacob Thornton committed
121
        if (this.options.animation) {
122
123
124
          $tip.addClass('fade')
        }

125
        placement = typeof this.options.placement == 'function' ?
126
          this.options.placement.call(this, $tip[0], this.$element[0]) :
127
128
          this.options.placement

129
        $tip
frntz's avatar
frntz committed
130
          .detach()
131
          .css({ top: 0, left: 0, display: 'block' })
Yohn's avatar
Yohn committed
132

Yohn's avatar
Yohn committed
133
        this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
134

135
        pos = this.getPosition()
136
137
138

        actualWidth = $tip[0].offsetWidth
        actualHeight = $tip[0].offsetHeight
139

140
        switch (placement) {
141
          case 'bottom':
142
            tp = {top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}
143
            break
144
          case 'top':
145
            tp = {top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}
146
147
            break
          case 'left':
148
            tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}
149
150
            break
          case 'right':
151
            tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}
152
153
154
            break
        }

Guillaume Gautreau's avatar
Guillaume Gautreau committed
155
        this.applyPlacement(tp, placement)
156
        this.$element.trigger('shown')
157
158
159
      }
    }

160
  , applyPlacement: function(offset, placement){
fat's avatar
fat committed
161
162
163
164
165
166
167
      var $tip = this.tip()
        , width = $tip[0].offsetWidth
        , height = $tip[0].offsetHeight
        , actualWidth
        , actualHeight
        , delta
        , replace
168

fat's avatar
fat committed
169
170
171
172
      $tip
        .offset(offset)
        .addClass(placement)
        .addClass('in')
173

fat's avatar
fat committed
174
175
176
177
178
179
      actualWidth = $tip[0].offsetWidth
      actualHeight = $tip[0].offsetHeight

      if (placement == 'top' && actualHeight != height) {
        offset.top = offset.top + height - actualHeight
        replace = true
180
      }
181

fat's avatar
fat committed
182
183
      if (placement == 'bottom' || placement == 'top') {
        delta = 0
184

fat's avatar
fat committed
185
186
187
188
189
190
191
        if (offset.left < 0){
          delta = offset.left * -2
          offset.left = 0
          $tip.offset(offset)
          actualWidth = $tip[0].offsetWidth
          actualHeight = $tip[0].offsetHeight
        }
192

fat's avatar
fat committed
193
194
195
196
        this.replaceArrow(delta - width + actualWidth, actualWidth, 'left')
      } else {
        this.replaceArrow(actualHeight - height, actualHeight, 'top')
      }
197

fat's avatar
fat committed
198
199
200
201
202
203
204
      if (replace) $tip.offset(offset)
    }

  , replaceArrow: function(delta, dimension, position){
      this
        .arrow()
        .css(position, delta ? (50 * (1 - delta / dimension) + "%") : '')
205
206
    }

Jacob Thornton's avatar
Jacob Thornton committed
207
208
  , setContent: function () {
      var $tip = this.tip()
209
210
        , title = this.getTitle()

211
      $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
212
      $tip.removeClass('fade in top bottom left right')
Jacob Thornton's avatar
Jacob Thornton committed
213
214
    }

215
  , hide: function () {
216
217
      var that = this
        , $tip = this.tip()
218
        , e = $.Event('hide')
219

220
      this.$element.trigger(e)
221
      if (e.isDefaultPrevented()) return
222

223
      $tip.removeClass('in')
224

225
226
      function removeWithAnimation() {
        var timeout = setTimeout(function () {
frntz's avatar
frntz committed
227
          $tip.off($.support.transition.end).detach()
228
229
230
231
        }, 500)

        $tip.one($.support.transition.end, function () {
          clearTimeout(timeout)
frntz's avatar
frntz committed
232
          $tip.detach()
233
        })
234
235
      }

236
      $.support.transition && this.$tip.hasClass('fade') ?
237
        removeWithAnimation() :
frntz's avatar
frntz committed
238
        $tip.detach()
Jacob Thornton's avatar
Jacob Thornton committed
239

240
241
      this.$element.trigger('hidden')

242
      return this
243
244
    }

245
  , fixTitle: function () {
246
247
      var $e = this.$element
      if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
Yohn's avatar
Yohn committed
248
        $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
249
250
251
      }
    }

252
253
254
255
  , hasContent: function () {
      return this.getTitle()
    }

256
257
  , getPosition: function () {
      var el = this.$element[0]
258
      return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : {
259
260
261
        width: el.offsetWidth
      , height: el.offsetHeight
      }, this.$element.offset())
262
263
    }

264
  , getTitle: function () {
265
266
267
268
      var title
        , $e = this.$element
        , o = this.options

269
270
      title = $e.attr('data-original-title')
        || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)
271

272
      return title
273
274
    }

275
  , tip: function () {
276
      return this.$tip = this.$tip || $(this.options.template)
277
278
    }

279
  , arrow: function(){
fat's avatar
fat committed
280
281
      return this.$arrow = this.$arrow || this.tip().find(".tooltip-arrow")
    }
282

283
  , validate: function () {
284
285
286
287
288
289
290
      if (!this.$element[0].parentNode) {
        this.hide()
        this.$element = null
        this.options = null
      }
    }

291
  , enable: function () {
292
293
294
      this.enabled = true
    }

295
  , disable: function () {
296
297
298
      this.enabled = false
    }

299
  , toggleEnabled: function () {
300
301
302
      this.enabled = !this.enabled
    }

303
  , toggle: function (e) {
Yohn's avatar
Yohn committed
304
305
      var self = e ? $(e.currentTarget)[this.type](this._options).data(this.type) : this
      self.tip().hasClass('in') ? self.hide() : self.show()
306
307
    }

308
  , destroy: function () {
Jon Stevens's avatar
Jon Stevens committed
309
      this.hide().$element.off('.' + this.type).removeData(this.type)
310
311
    }

312
313
314
  }


315
316
 /* TOOLTIP PLUGIN DEFINITION
  * ========================= */
317

318
319
  var old = $.fn.tooltip

320
  $.fn.tooltip = function ( option ) {
321
322
    return this.each(function () {
      var $this = $(this)
323
        , data = $this.data('tooltip')
324
        , options = typeof option == 'object' && option
325
      if (!data) $this.data('tooltip', (data = new Tooltip(this, options)))
326
327
      if (typeof option == 'string') data[option]()
    })
328
329
  }

330
  $.fn.tooltip.Constructor = Tooltip
Jacob Thornton's avatar
Jacob Thornton committed
331

332
  $.fn.tooltip.defaults = {
Jacob Thornton's avatar
Jacob Thornton committed
333
    animation: true
334
  , placement: 'top'
335
336
  , selector: false
  , template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'
337
  , trigger: 'hover focus'
338
  , title: ''
339
  , delay: 0
340
  , html: false
Yohn's avatar
Yohn committed
341
  , container: false
342
343
  }

344
345
346
347
348
349
350
351
352

 /* TOOLTIP NO CONFLICT
  * =================== */

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

Yohn's avatar
Yohn committed
353
}(window.jQuery);