this.checkPosition()
}
- Affix.RESET = 'affix affix-top affix-bottom'
+ Affix.VERSION = '3.1.1'
+
+ Affix.RESET = 'affix affix-top affix-bottom'
Affix.DEFAULTS = {
offset: 0
$(el).on('click', dismiss, this.close)
}
+ Alert.VERSION = '3.1.1'
+
Alert.prototype.close = function (e) {
var $this = $(this)
var selector = $this.attr('data-target')
this.isLoading = false
}
+ Button.VERSION = '3.1.1'
+
Button.DEFAULTS = {
loadingText: 'loading...'
}
.on('mouseleave', $.proxy(this.cycle, this))
}
+ Carousel.VERSION = '3.1.1'
+
Carousel.DEFAULTS = {
interval: 5000,
pause: 'hover',
if (this.options.toggle) this.toggle()
}
+ Collapse.VERSION = '3.1.1'
+
Collapse.DEFAULTS = {
toggle: true
}
$(element).on('click.bs.dropdown', this.toggle)
}
+ Dropdown.VERSION = '3.1.1'
+
Dropdown.prototype.toggle = function (e) {
var $this = $(this)
}
}
+ Modal.VERSION = '3.1.1'
+
Modal.DEFAULTS = {
backdrop: true,
keyboard: true,
if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
+ Popover.VERSION = '3.1.1'
+
Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
placement: 'right',
trigger: 'click',
this.process()
}
+ ScrollSpy.VERSION = '3.1.1'
+
ScrollSpy.DEFAULTS = {
offset: 10
}
this.element = $(element)
}
+ Tab.VERSION = '3.1.1'
+
Tab.prototype.show = function () {
var $this = this.element
var $ul = $this.closest('ul:not(.dropdown-menu)')
this.init('tooltip', element, options)
}
+ Tooltip.VERSION = '3.1.1'
+
Tooltip.DEFAULTS = {
animation: true,
placement: 'top',