2011-09-11 01:24:31 -04:00
|
|
|
/* ==========================================================
|
2011-11-20 23:58:04 -05:00
|
|
|
* bootstrap-twipsy.js v2.0.0
|
2011-09-11 01:24:31 -04:00
|
|
|
* http://twitter.github.com/bootstrap/javascript.html#twipsy
|
2011-12-20 21:02:47 -05:00
|
|
|
* Inspired by the original jQuery.tipsy by Jason Frame
|
2011-09-11 01:24:31 -04:00
|
|
|
* ==========================================================
|
|
|
|
* Copyright 2011 Twitter, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* ========================================================== */
|
|
|
|
|
2011-10-05 00:48:53 -04:00
|
|
|
!function( $ ) {
|
2011-08-27 16:03:06 -04:00
|
|
|
|
2011-11-20 21:19:50 -05:00
|
|
|
"use strict"
|
|
|
|
|
2011-08-27 16:03:06 -04:00
|
|
|
/* TWIPSY PUBLIC CLASS DEFINITION
|
|
|
|
* ============================== */
|
|
|
|
|
|
|
|
var Twipsy = function ( element, options ) {
|
2011-12-20 21:02:47 -05:00
|
|
|
this.init('twipsy', element, options)
|
2011-08-27 16:03:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Twipsy.prototype = {
|
|
|
|
|
2011-12-01 01:42:22 -05:00
|
|
|
constructor: Twipsy
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
, 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 {
|
|
|
|
setTimeout(function() {
|
|
|
|
self.hoverState = 'out'
|
|
|
|
if (self.hoverState == 'out') {
|
|
|
|
self.hide()
|
|
|
|
}
|
|
|
|
}, self.options.delay.hide)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
, show: function () {
|
|
|
|
var $tip
|
2011-12-22 22:10:32 -05:00
|
|
|
, inside
|
2011-12-20 21:02:47 -05:00
|
|
|
, pos
|
2011-08-27 16:03:06 -04:00
|
|
|
, actualWidth
|
|
|
|
, actualHeight
|
|
|
|
, placement
|
|
|
|
, tp
|
|
|
|
|
2011-11-20 21:19:50 -05:00
|
|
|
if (this.hasContent() && this.enabled) {
|
2011-08-27 16:03:06 -04:00
|
|
|
$tip = this.tip()
|
2011-08-27 20:22:49 -04:00
|
|
|
this.setContent()
|
2011-08-27 21:03:01 -04:00
|
|
|
|
2011-12-21 16:29:12 -05:00
|
|
|
if (this.options.animation) {
|
2011-08-27 21:03:01 -04:00
|
|
|
$tip.addClass('fade')
|
|
|
|
}
|
|
|
|
|
2011-12-22 22:10:32 -05:00
|
|
|
placement = typeof this.options.placement == 'function' ?
|
|
|
|
thing.call(this, $tip[0], this.$element[0]) :
|
|
|
|
this.options.placement
|
|
|
|
|
|
|
|
inside = /in/.test(placement)
|
|
|
|
|
2011-08-27 16:03:06 -04:00
|
|
|
$tip
|
|
|
|
.remove()
|
|
|
|
.css({ top: 0, left: 0, display: 'block' })
|
2011-12-22 22:10:32 -05:00
|
|
|
.prependTo(inside ? this.$element : document.body)
|
2011-08-27 16:03:06 -04:00
|
|
|
|
2011-12-25 01:56:01 -05:00
|
|
|
pos = this.getPosition(inside)
|
2011-08-27 16:03:06 -04:00
|
|
|
|
|
|
|
actualWidth = $tip[0].offsetWidth
|
|
|
|
actualHeight = $tip[0].offsetHeight
|
2011-11-20 21:19:50 -05:00
|
|
|
|
2011-12-22 22:10:32 -05:00
|
|
|
switch (inside ? placement.split(' ')[1] : placement) {
|
|
|
|
case 'bottom':
|
2011-12-20 21:02:47 -05:00
|
|
|
tp = {top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}
|
2011-08-27 16:03:06 -04:00
|
|
|
break
|
2011-12-22 22:10:32 -05:00
|
|
|
case 'top':
|
2011-12-20 21:02:47 -05:00
|
|
|
tp = {top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}
|
2011-08-27 16:03:06 -04:00
|
|
|
break
|
|
|
|
case 'left':
|
2011-12-20 21:02:47 -05:00
|
|
|
tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}
|
2011-08-27 16:03:06 -04:00
|
|
|
break
|
|
|
|
case 'right':
|
2011-12-20 21:02:47 -05:00
|
|
|
tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}
|
2011-08-27 16:03:06 -04:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
$tip
|
|
|
|
.css(tp)
|
|
|
|
.addClass(placement)
|
2011-08-27 21:03:01 -04:00
|
|
|
.addClass('in')
|
2011-08-27 16:03:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-27 20:22:49 -04:00
|
|
|
, setContent: function () {
|
|
|
|
var $tip = this.tip()
|
2011-11-20 23:58:04 -05:00
|
|
|
$tip.find('.twipsy-inner').html(this.getTitle())
|
2011-08-27 20:22:49 -04:00
|
|
|
$tip[0].className = 'twipsy'
|
|
|
|
}
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
, hide: function () {
|
2011-08-27 16:03:06 -04:00
|
|
|
var that = this
|
|
|
|
, $tip = this.tip()
|
|
|
|
|
2011-08-27 21:03:01 -04:00
|
|
|
$tip.removeClass('in')
|
2011-08-27 16:03:06 -04:00
|
|
|
|
2011-12-25 02:06:16 -05:00
|
|
|
function removeWithAnimation() {
|
|
|
|
var timeout = setTimeout(function () {
|
|
|
|
$tip.off($.support.transition.end).remove()
|
|
|
|
}, 500)
|
|
|
|
|
|
|
|
$tip.one($.support.transition.end, function () {
|
|
|
|
clearTimeout(timeout)
|
|
|
|
$tip.remove()
|
|
|
|
})
|
2011-08-27 16:03:06 -04:00
|
|
|
}
|
|
|
|
|
2011-08-27 21:03:01 -04:00
|
|
|
$.support.transition && this.$tip.hasClass('fade') ?
|
2011-12-25 02:06:16 -05:00
|
|
|
removeWithAnimation() :
|
|
|
|
$tip.remove()
|
2011-08-27 16:03:06 -04:00
|
|
|
}
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
, fixTitle: function () {
|
2011-08-27 16:03:06 -04:00
|
|
|
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')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-20 21:19:50 -05:00
|
|
|
, hasContent: function () {
|
|
|
|
return this.getTitle()
|
|
|
|
}
|
|
|
|
|
2011-12-25 01:56:01 -05:00
|
|
|
, getPosition: function (inside) {
|
|
|
|
return $.extend({}, (inside ? {top: 0, left: 0} : this.$element.offset()), {
|
|
|
|
width: this.$element[0].offsetWidth
|
|
|
|
, height: this.$element[0].offsetHeight
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
, getTitle: function () {
|
2011-08-27 16:03:06 -04:00
|
|
|
var title
|
|
|
|
, $e = this.$element
|
|
|
|
, o = this.options
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
title = $e.attr('data-original-title')
|
|
|
|
|| (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
|
2011-08-27 16:03:06 -04:00
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
title = title.toString().replace(/(^\s*|\s*$)/, "")
|
2011-08-27 16:03:06 -04:00
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
return title
|
2011-08-27 16:03:06 -04:00
|
|
|
}
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
, tip: function () {
|
2011-12-20 22:37:41 -05:00
|
|
|
return this.$tip = this.$tip || $(this.options.template)
|
2011-08-27 16:03:06 -04:00
|
|
|
}
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
, validate: function () {
|
2011-08-27 16:03:06 -04:00
|
|
|
if (!this.$element[0].parentNode) {
|
|
|
|
this.hide()
|
|
|
|
this.$element = null
|
|
|
|
this.options = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
, enable: function () {
|
2011-08-27 16:03:06 -04:00
|
|
|
this.enabled = true
|
|
|
|
}
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
, disable: function () {
|
2011-08-27 16:03:06 -04:00
|
|
|
this.enabled = false
|
|
|
|
}
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
, toggleEnabled: function () {
|
2011-08-27 16:03:06 -04:00
|
|
|
this.enabled = !this.enabled
|
|
|
|
}
|
|
|
|
|
2011-11-20 21:19:50 -05:00
|
|
|
, toggle: function () {
|
|
|
|
this[this.tip().hasClass('in') ? 'hide' : 'show']()
|
|
|
|
}
|
|
|
|
|
2011-08-27 16:03:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-27 20:22:49 -04:00
|
|
|
/* TWIPSY PLUGIN DEFINITION
|
|
|
|
* ======================== */
|
2011-08-27 16:03:06 -04:00
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
$.fn.twipsy = function ( option ) {
|
|
|
|
return this.each(function () {
|
|
|
|
var $this = $(this)
|
|
|
|
, data = $this.data('twipsy')
|
|
|
|
, options = typeof option == 'object' && option
|
|
|
|
if (!data) $this.data('twipsy', (data = new Twipsy(this, options)))
|
|
|
|
if (typeof option == 'string') data[option]()
|
|
|
|
})
|
2011-08-27 16:03:06 -04:00
|
|
|
}
|
|
|
|
|
2011-12-21 02:28:48 -05:00
|
|
|
$.fn.twipsy.Constructor = Twipsy
|
2011-08-27 20:22:49 -04:00
|
|
|
|
2011-08-27 16:03:06 -04:00
|
|
|
$.fn.twipsy.defaults = {
|
2011-12-21 16:29:12 -05:00
|
|
|
animation: true
|
2011-11-20 23:58:04 -05:00
|
|
|
, delay: 0
|
2011-12-20 21:02:47 -05:00
|
|
|
, selector: false
|
2011-12-22 22:10:32 -05:00
|
|
|
, placement: 'top'
|
2011-08-27 16:03:06 -04:00
|
|
|
, trigger: 'hover'
|
2011-12-20 21:02:47 -05:00
|
|
|
, title: ''
|
2011-12-20 22:37:41 -05:00
|
|
|
, template: '<div class="twipsy"><div class="twipsy-arrow"></div><div class="twipsy-inner"></div></div>'
|
2011-08-27 16:03:06 -04:00
|
|
|
}
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
}( window.jQuery )
|