</section>
- <!-- Button
+ <!-- Button
================================================== -->
<section id="button">
Alert.prototype = {
- close: function ( e ) {
+ constructor: Alert
+
+ , close: function ( e ) {
var $element = $(this)
$element = $element.hasClass('alert-message') ? $element : $element.parent()
Button.prototype = {
- setState: function (state) {
+ constructor: Button
+
+ , setState: function (state) {
var d = 'disabled'
, $el = this.$element
, data = $el.data()
Collapse.prototype = {
- dimension: function () {
+ constructor: Collapse
+
+ , dimension: function () {
var hasWidth = this.$element.hasClass('width')
return hasWidth ? 'width' : 'height'
}
Dropdown.prototype = {
- toggle: function ( e ) {
+ constructor: Dropdown
+
+ , toggle: function ( e ) {
var li = $(this).parent('li')
, isActive = li.hasClass('open')
Modal.prototype = {
- toggle: function () {
+ constructor: Modal
+
+ , toggle: function () {
return this[!this.isShown ? 'show' : 'hide']()
}
Popover.prototype = $.extend({}, $.fn.twipsy.Twipsy.prototype, {
- setContent: function () {
+ constructor: Popover
+
+ , setContent: function () {
var $tip = this.tip()
, title = this.getTitle()
, content = this.getContent()
ScrollSpy.prototype = {
- refresh: function () {
+ constructor: ScrollSpy
+
+ , refresh: function () {
this.targets = this.$body
.find(this.selector)
.map(function () {
Tab.prototype = {
- show: function () {
+ constructor: Tab
+
+ , show: function () {
var $this = this.element
, $ul = $this.closest('ul:not(.dropdown-menu)')
, href = $this.attr('data-target') || $this.attr('href')
Twipsy.prototype = {
- show: function() {
+ constructor: Twipsy
+
+ , show: function() {
var pos
, actualWidth
, actualHeight
return this
}
- $.fn.twipsy.initWith = function (options, Constructor, name) {
+ $.fn.twipsy.initWith = function (options, Base, name) {
var twipsy
, binder
, eventIn
var twipsy = $.data(ele, name)
if (!twipsy) {
- twipsy = new Constructor(ele, $.fn.twipsy.elementOptions(ele, options))
+ twipsy = new Base(ele, $.fn.twipsy.elementOptions(ele, options))
$.data(ele, name, twipsy)
}