bootstrap-tooltip.js 7.14 KB
Newer Older
1
/* ===========================================================
Jacob Thornton's avatar
Jacob Thornton committed
2
 * bootstrap-tooltip.js v2.0.2
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
!function( $ ) {
22

23
24
  "use strict"

25
26
 /* TOOLTIP PUBLIC CLASS DEFINITION
  * =============================== */
27

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

32
  Tooltip.prototype = {
33

34
    constructor: Tooltip
35

36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
  , init: function ( type, element, options ) {
      var eventIn
        , eventOut

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

      if (this.options.trigger != 'manual') {
        eventIn  = this.options.trigger == 'hover' ? 'mouseenter' : 'focus'
        eventOut = this.options.trigger == 'hover' ? 'mouseleave' : 'blur'
        this.$element.on(eventIn, this.options.selector, $.proxy(this.enter, this))
        this.$element.on(eventOut, this.options.selector, $.proxy(this.leave, this))
      }

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

  , getOptions: function ( options ) {
      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
    }

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

      if (!self.options.delay || !self.options.delay.show) {
        self.show()
      } else {
        self.hoverState = 'in'
        setTimeout(function() {
          if (self.hoverState == 'in') {
            self.show()
          }
        }, self.options.delay.show)
      }
    }

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

      if (!self.options.delay || !self.options.delay.hide) {
        self.hide()
      } else {
91
        self.hoverState = 'out'
92
93
94
95
96
97
98
99
100
101
        setTimeout(function() {
          if (self.hoverState == 'out') {
            self.hide()
          }
        }, self.options.delay.hide)
      }
    }

  , show: function () {
      var $tip
102
        , inside
103
        , pos
104
105
106
107
108
        , actualWidth
        , actualHeight
        , placement
        , tp

109
      if (this.hasContent() && this.enabled) {
110
        $tip = this.tip()
Jacob Thornton's avatar
Jacob Thornton committed
111
        this.setContent()
112

Jacob Thornton's avatar
Jacob Thornton committed
113
        if (this.options.animation) {
114
115
116
          $tip.addClass('fade')
        }

117
        placement = typeof this.options.placement == 'function' ?
118
          this.options.placement.call(this, $tip[0], this.$element[0]) :
119
120
121
122
          this.options.placement

        inside = /in/.test(placement)

123
124
125
        $tip
          .remove()
          .css({ top: 0, left: 0, display: 'block' })
Jacob Thornton's avatar
Jacob Thornton committed
126
          .appendTo(inside ? this.$element : document.body)
127

128
        pos = this.getPosition(inside)
129
130
131

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

133
134
        switch (inside ? placement.split(' ')[1] : placement) {
          case 'bottom':
135
            tp = {top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}
136
            break
137
          case 'top':
138
            tp = {top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}
139
140
            break
          case 'left':
141
            tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}
142
143
            break
          case 'right':
144
            tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}
145
146
147
148
149
150
            break
        }

        $tip
          .css(tp)
          .addClass(placement)
151
          .addClass('in')
152
153
154
      }
    }

Jacob Thornton's avatar
Jacob Thornton committed
155
156
  , setContent: function () {
      var $tip = this.tip()
157
      $tip.find('.tooltip-inner').html(this.getTitle())
158
      $tip.removeClass('fade in top bottom left right')
Jacob Thornton's avatar
Jacob Thornton committed
159
160
    }

161
  , hide: function () {
162
163
164
      var that = this
        , $tip = this.tip()

165
      $tip.removeClass('in')
166

167
168
169
170
171
172
173
174
175
      function removeWithAnimation() {
        var timeout = setTimeout(function () {
          $tip.off($.support.transition.end).remove()
        }, 500)

        $tip.one($.support.transition.end, function () {
          clearTimeout(timeout)
          $tip.remove()
        })
176
177
      }

178
      $.support.transition && this.$tip.hasClass('fade') ?
179
180
        removeWithAnimation() :
        $tip.remove()
181
182
    }

183
  , fixTitle: function () {
184
185
186
187
188
189
      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')
      }
    }

190
191
192
193
  , hasContent: function () {
      return this.getTitle()
    }

194
195
196
197
198
199
200
  , getPosition: function (inside) {
      return $.extend({}, (inside ? {top: 0, left: 0} : this.$element.offset()), {
        width: this.$element[0].offsetWidth
      , height: this.$element[0].offsetHeight
      })
    }

201
  , getTitle: function () {
202
203
204
205
      var title
        , $e = this.$element
        , o = this.options

206
207
      title = $e.attr('data-original-title')
        || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)
208

209
      return title
210
211
    }

212
  , tip: function () {
213
      return this.$tip = this.$tip || $(this.options.template)
214
215
    }

216
  , validate: function () {
217
218
219
220
221
222
223
      if (!this.$element[0].parentNode) {
        this.hide()
        this.$element = null
        this.options = null
      }
    }

224
  , enable: function () {
225
226
227
      this.enabled = true
    }

228
  , disable: function () {
229
230
231
      this.enabled = false
    }

232
  , toggleEnabled: function () {
233
234
235
      this.enabled = !this.enabled
    }

236
237
238
239
  , toggle: function () {
      this[this.tip().hasClass('in') ? 'hide' : 'show']()
    }

240
241
242
  }


243
244
 /* TOOLTIP PLUGIN DEFINITION
  * ========================= */
245

246
  $.fn.tooltip = function ( option ) {
247
248
    return this.each(function () {
      var $this = $(this)
249
        , data = $this.data('tooltip')
250
        , options = typeof option == 'object' && option
251
      if (!data) $this.data('tooltip', (data = new Tooltip(this, options)))
252
253
      if (typeof option == 'string') data[option]()
    })
254
255
  }

256
  $.fn.tooltip.Constructor = Tooltip
Jacob Thornton's avatar
Jacob Thornton committed
257

258
  $.fn.tooltip.defaults = {
Jacob Thornton's avatar
Jacob Thornton committed
259
    animation: true
260
  , delay: 0
261
  , selector: false
262
  , placement: 'top'
263
  , trigger: 'hover'
264
  , title: ''
265
  , template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'
266
267
  }

268
}( window.jQuery );