bootstrap-tooltip.js 8.1 KB
Newer Older
1
/* ===========================================================
Mark Otto's avatar
Mark Otto committed
2
 * bootstrap-tooltip.js v2.2.3
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
71
72
73
74
75
76
77
78
79
80
81
      options = $.extend({}, $.fn[this.type].defaults, options, this.$element.data())

      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
114

115
      if (this.hasContent() && this.enabled) {
116
117
        this.$element.trigger(e = $.Event('show'))
        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' })
132
          .insertAfter(this.$element)
133

134
        pos = this.getPosition()
135
136
137

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

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

        $tip
155
          .offset(tp)
156
          .addClass(placement)
157
          .addClass('in')
158
159

        this.$element.trigger('shown')
160
161
162
      }
    }

Jacob Thornton's avatar
Jacob Thornton committed
163
164
  , setContent: function () {
      var $tip = this.tip()
165
166
        , title = this.getTitle()

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

171
  , hide: function () {
172
173
      var that = this
        , $tip = this.tip()
174
175
176
177
        , e

      this.$element.trigger(e = $.Event('hide'))
      if (e.isDefaultPrevented()) return
178

179
      $tip.removeClass('in')
180

181
182
      function removeWithAnimation() {
        var timeout = setTimeout(function () {
frntz's avatar
frntz committed
183
          $tip.off($.support.transition.end).detach()
184
185
186
187
        }, 500)

        $tip.one($.support.transition.end, function () {
          clearTimeout(timeout)
frntz's avatar
frntz committed
188
          $tip.detach()
189
        })
190
191
      }

192
      $.support.transition && this.$tip.hasClass('fade') ?
193
        removeWithAnimation() :
frntz's avatar
frntz committed
194
        $tip.detach()
Jacob Thornton's avatar
Jacob Thornton committed
195

196
197
      this.$element.trigger('hidden')

198
      return this
199
200
    }

201
  , fixTitle: function () {
202
203
204
205
206
207
      var $e = this.$element
      if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
        $e.attr('data-original-title', $e.attr('title') || '').removeAttr('title')
      }
    }

208
209
210
211
  , hasContent: function () {
      return this.getTitle()
    }

212
213
  , getPosition: function () {
      var el = this.$element[0]
fat's avatar
fat committed
214
      return $.extend({}, el.getBoundingClientRect ? el.getBoundingClientRect() : {
215
216
217
        width: el.offsetWidth
      , height: el.offsetHeight
      }, this.$element.offset())
218
219
    }

220
  , getTitle: function () {
221
222
223
224
      var title
        , $e = this.$element
        , o = this.options

225
226
      title = $e.attr('data-original-title')
        || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)
227

228
      return title
229
230
    }

231
  , tip: function () {
232
      return this.$tip = this.$tip || $(this.options.template)
233
234
    }

235
  , validate: function () {
236
237
238
239
240
241
242
      if (!this.$element[0].parentNode) {
        this.hide()
        this.$element = null
        this.options = null
      }
    }

243
  , enable: function () {
244
245
246
      this.enabled = true
    }

247
  , disable: function () {
248
249
250
      this.enabled = false
    }

251
  , toggleEnabled: function () {
252
253
254
      this.enabled = !this.enabled
    }

255
  , toggle: function (e) {
Yohn's avatar
Yohn committed
256
257
      var self = e ? $(e.currentTarget)[this.type](this._options).data(this.type) : this
      self.tip().hasClass('in') ? self.hide() : self.show()
258
259
    }

260
  , destroy: function () {
Jon Stevens's avatar
Jon Stevens committed
261
      this.hide().$element.off('.' + this.type).removeData(this.type)
262
263
    }

264
265
266
  }


267
268
 /* TOOLTIP PLUGIN DEFINITION
  * ========================= */
269

270
271
  var old = $.fn.tooltip

272
  $.fn.tooltip = function ( option ) {
273
274
    return this.each(function () {
      var $this = $(this)
275
        , data = $this.data('tooltip')
276
        , options = typeof option == 'object' && option
277
      if (!data) $this.data('tooltip', (data = new Tooltip(this, options)))
278
279
      if (typeof option == 'string') data[option]()
    })
280
281
  }

282
  $.fn.tooltip.Constructor = Tooltip
Jacob Thornton's avatar
Jacob Thornton committed
283

284
  $.fn.tooltip.defaults = {
Jacob Thornton's avatar
Jacob Thornton committed
285
    animation: true
286
  , placement: 'top'
287
288
  , selector: false
  , template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'
289
  , trigger: 'hover focus'
290
  , title: ''
291
  , delay: 0
292
  , html: false
293
294
  }

295
296
297
298
299
300
301
302
303

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

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

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