0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00

Merge branch '2.0-wip' of github.com:twitter/bootstrap into 2.0-wip

Conflicts:
	bootstrap.css
This commit is contained in:
Mark Otto 2011-12-09 11:33:02 -08:00
commit 312ee6cdfb
12 changed files with 90 additions and 13 deletions

2
bootstrap.css vendored
View File

@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Fri Dec 9 11:23:25 PST 2011
* Date: Fri Dec 9 11:32:45 PST 2011
*/
html, body {
margin: 0;

View File

@ -757,7 +757,7 @@ $('a[data-toggle="tab"]').bind('shown', function (e) {
</section>
<!-- Button
<!-- Button
================================================== -->
<section id="button">

View File

@ -32,7 +32,9 @@
Alert.prototype = {
close: function ( e ) {
constructor: Alert
, close: function ( e ) {
var $element = $(this)
$element = $element.hasClass('alert-message') ? $element : $element.parent()

View File

@ -31,7 +31,9 @@
Button.prototype = {
setState: function (state) {
constructor: Button
, setState: function (state) {
var d = 'disabled'
, $el = this.$element
, data = $el.data()

59
js/bootstrap-carousel.js vendored Normal file
View File

@ -0,0 +1,59 @@
/* ==========================================================
* bootstrap-carousel.js v2.0.0
* http://twitter.github.com/bootstrap/javascript.html#alerts
* ==========================================================
* 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.
* ========================================================== */
!function( $ ){
"use strict"
/* CAROUSEL CLASS DEFINITION
* ========================= */
var Carousel = function ( el ) {
$(el).delegate(dismiss, 'click', this.close)
}
Carousel.prototype = {
}
/* CAROUSEL PLUGIN DEFINITION
* ========================== */
$.fn.carousel = function ( option ) {
return this.each(function () {
var $this = $(this)
, data = $this.data('alert')
if (!data) $this.data('alert', (data = new Alert(this)))
if (typeof option == 'string') data[option].call($this)
})
}
$.fn.carousel.Carousel = Carousel
/* CAROUSEL DATA-API
* ================= */
// $(function () {
// $('body').delegate(dismiss, 'click.alert.data-api', Alert.prototype.close)
// })
}( window.jQuery || window.ender )

View File

@ -34,7 +34,9 @@
Collapse.prototype = {
dimension: function () {
constructor: Collapse
, dimension: function () {
var hasWidth = this.$element.hasClass('width')
return hasWidth ? 'width' : 'height'
}

View File

@ -32,7 +32,9 @@
Dropdown.prototype = {
toggle: function ( e ) {
constructor: Dropdown
, toggle: function ( e ) {
var li = $(this).parent('li')
, isActive = li.hasClass('open')

View File

@ -34,7 +34,9 @@
Modal.prototype = {
toggle: function () {
constructor: Modal
, toggle: function () {
return this[!this.isShown ? 'show' : 'hide']()
}

View File

@ -34,7 +34,9 @@
Popover.prototype = $.extend({}, $.fn.twipsy.Twipsy.prototype, {
setContent: function () {
constructor: Popover
, setContent: function () {
var $tip = this.tip()
, title = this.getTitle()
, content = this.getContent()

View File

@ -39,7 +39,9 @@
ScrollSpy.prototype = {
refresh: function () {
constructor: ScrollSpy
, refresh: function () {
this.targets = this.$body
.find(this.selector)
.map(function () {

4
js/bootstrap-tab.js vendored
View File

@ -31,7 +31,9 @@
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')

View File

@ -34,7 +34,9 @@
Twipsy.prototype = {
show: function() {
constructor: Twipsy
, show: function() {
var pos
, actualWidth
, actualHeight
@ -183,7 +185,7 @@
return this
}
$.fn.twipsy.initWith = function (options, Constructor, name) {
$.fn.twipsy.initWith = function (options, Base, name) {
var twipsy
, binder
, eventIn
@ -209,7 +211,7 @@
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)
}