mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
define constructor on prototypes
This commit is contained in:
parent
b1cba98aab
commit
cee2f61898
10 changed files with 30 additions and 12 deletions
4
js/bootstrap-alert.js
vendored
4
js/bootstrap-alert.js
vendored
|
@ -32,7 +32,9 @@
|
||||||
|
|
||||||
Alert.prototype = {
|
Alert.prototype = {
|
||||||
|
|
||||||
close: function ( e ) {
|
constructor: Alert
|
||||||
|
|
||||||
|
, close: function ( e ) {
|
||||||
var $element = $(this)
|
var $element = $(this)
|
||||||
|
|
||||||
$element = $element.hasClass('alert-message') ? $element : $element.parent()
|
$element = $element.hasClass('alert-message') ? $element : $element.parent()
|
||||||
|
|
4
js/bootstrap-button.js
vendored
4
js/bootstrap-button.js
vendored
|
@ -31,7 +31,9 @@
|
||||||
|
|
||||||
Button.prototype = {
|
Button.prototype = {
|
||||||
|
|
||||||
setState: function (state) {
|
constructor: Button
|
||||||
|
|
||||||
|
, setState: function (state) {
|
||||||
var d = 'disabled'
|
var d = 'disabled'
|
||||||
, $el = this.$element
|
, $el = this.$element
|
||||||
, data = $el.data()
|
, data = $el.data()
|
||||||
|
|
4
js/bootstrap-collapse.js
vendored
4
js/bootstrap-collapse.js
vendored
|
@ -34,7 +34,9 @@
|
||||||
|
|
||||||
Collapse.prototype = {
|
Collapse.prototype = {
|
||||||
|
|
||||||
dimension: function () {
|
constructor: Collapse
|
||||||
|
|
||||||
|
, dimension: function () {
|
||||||
var hasWidth = this.$element.hasClass('width')
|
var hasWidth = this.$element.hasClass('width')
|
||||||
return hasWidth ? 'width' : 'height'
|
return hasWidth ? 'width' : 'height'
|
||||||
}
|
}
|
||||||
|
|
4
js/bootstrap-dropdown.js
vendored
4
js/bootstrap-dropdown.js
vendored
|
@ -32,7 +32,9 @@
|
||||||
|
|
||||||
Dropdown.prototype = {
|
Dropdown.prototype = {
|
||||||
|
|
||||||
toggle: function ( e ) {
|
constructor: Dropdown
|
||||||
|
|
||||||
|
, toggle: function ( e ) {
|
||||||
var li = $(this).parent('li')
|
var li = $(this).parent('li')
|
||||||
, isActive = li.hasClass('open')
|
, isActive = li.hasClass('open')
|
||||||
|
|
||||||
|
|
4
js/bootstrap-modal.js
vendored
4
js/bootstrap-modal.js
vendored
|
@ -34,7 +34,9 @@
|
||||||
|
|
||||||
Modal.prototype = {
|
Modal.prototype = {
|
||||||
|
|
||||||
toggle: function () {
|
constructor: Modal
|
||||||
|
|
||||||
|
, toggle: function () {
|
||||||
return this[!this.isShown ? 'show' : 'hide']()
|
return this[!this.isShown ? 'show' : 'hide']()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
4
js/bootstrap-popover.js
vendored
4
js/bootstrap-popover.js
vendored
|
@ -34,7 +34,9 @@
|
||||||
|
|
||||||
Popover.prototype = $.extend({}, $.fn.twipsy.Twipsy.prototype, {
|
Popover.prototype = $.extend({}, $.fn.twipsy.Twipsy.prototype, {
|
||||||
|
|
||||||
setContent: function () {
|
constructor: Popover
|
||||||
|
|
||||||
|
, setContent: function () {
|
||||||
var $tip = this.tip()
|
var $tip = this.tip()
|
||||||
, title = this.getTitle()
|
, title = this.getTitle()
|
||||||
, content = this.getContent()
|
, content = this.getContent()
|
||||||
|
|
4
js/bootstrap-scrollspy.js
vendored
4
js/bootstrap-scrollspy.js
vendored
|
@ -39,7 +39,9 @@
|
||||||
|
|
||||||
ScrollSpy.prototype = {
|
ScrollSpy.prototype = {
|
||||||
|
|
||||||
refresh: function () {
|
constructor: ScrollSpy
|
||||||
|
|
||||||
|
, refresh: function () {
|
||||||
this.targets = this.$body
|
this.targets = this.$body
|
||||||
.find(this.selector)
|
.find(this.selector)
|
||||||
.map(function () {
|
.map(function () {
|
||||||
|
|
4
js/bootstrap-tab.js
vendored
4
js/bootstrap-tab.js
vendored
|
@ -31,7 +31,9 @@
|
||||||
|
|
||||||
Tab.prototype = {
|
Tab.prototype = {
|
||||||
|
|
||||||
show: function () {
|
constructor: Tab
|
||||||
|
|
||||||
|
, show: function () {
|
||||||
var $this = this.element
|
var $this = this.element
|
||||||
, $ul = $this.closest('ul:not(.dropdown-menu)')
|
, $ul = $this.closest('ul:not(.dropdown-menu)')
|
||||||
, href = $this.attr('data-target') || $this.attr('href')
|
, href = $this.attr('data-target') || $this.attr('href')
|
||||||
|
|
8
js/bootstrap-twipsy.js
vendored
8
js/bootstrap-twipsy.js
vendored
|
@ -34,7 +34,9 @@
|
||||||
|
|
||||||
Twipsy.prototype = {
|
Twipsy.prototype = {
|
||||||
|
|
||||||
show: function() {
|
constructor: Twipsy
|
||||||
|
|
||||||
|
, show: function() {
|
||||||
var pos
|
var pos
|
||||||
, actualWidth
|
, actualWidth
|
||||||
, actualHeight
|
, actualHeight
|
||||||
|
@ -183,7 +185,7 @@
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
$.fn.twipsy.initWith = function (options, Constructor, name) {
|
$.fn.twipsy.initWith = function (options, Base, name) {
|
||||||
var twipsy
|
var twipsy
|
||||||
, binder
|
, binder
|
||||||
, eventIn
|
, eventIn
|
||||||
|
@ -209,7 +211,7 @@
|
||||||
var twipsy = $.data(ele, name)
|
var twipsy = $.data(ele, name)
|
||||||
|
|
||||||
if (!twipsy) {
|
if (!twipsy) {
|
||||||
twipsy = new Constructor(ele, $.fn.twipsy.elementOptions(ele, options))
|
twipsy = new Base(ele, $.fn.twipsy.elementOptions(ele, options))
|
||||||
$.data(ele, name, twipsy)
|
$.data(ele, name, twipsy)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue