twitter-bootstrap-rails 2.2.8 → 3.2.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of twitter-bootstrap-rails might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/README.md +160 -228
- data/Rakefile +4 -6
- data/app/assets/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/fonts/fontawesome-webfont.svg +279 -38
- data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/app/assets/fonts/fontawesome-webfont.woff +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.svg +229 -0
- data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/javascripts/twitter/bootstrap/affix.js +142 -0
- data/app/assets/javascripts/twitter/bootstrap/alert.js +92 -0
- data/app/assets/javascripts/twitter/bootstrap/button.js +110 -0
- data/app/assets/javascripts/twitter/bootstrap/carousel.js +223 -0
- data/app/assets/javascripts/twitter/bootstrap/collapse.js +170 -0
- data/app/assets/javascripts/twitter/bootstrap/dropdown.js +151 -0
- data/app/assets/javascripts/twitter/bootstrap/modal.js +280 -0
- data/app/assets/javascripts/twitter/bootstrap/popover.js +113 -0
- data/app/assets/javascripts/twitter/bootstrap/scrollspy.js +170 -0
- data/app/assets/javascripts/twitter/bootstrap/tab.js +128 -0
- data/app/assets/javascripts/twitter/bootstrap/tooltip.js +457 -0
- data/app/assets/javascripts/twitter/bootstrap/transition.js +59 -0
- data/app/assets/javascripts/twitter/bootstrap.js +12 -13
- data/app/assets/stylesheets/twitter-bootstrap-static/bootstrap.css.erb +1 -890
- data/app/assets/stylesheets/twitter-bootstrap-static/fontawesome.css.erb +2026 -787
- data/app/assets/stylesheets/twitter-bootstrap-static/sprites.css.erb +1 -146
- data/app/helpers/bootstrap_flash_helper.rb +14 -7
- data/app/helpers/form_errors_helper.rb +22 -0
- data/app/helpers/glyph_helper.rb +8 -5
- data/app/helpers/modal_helper.rb +26 -22
- data/app/helpers/navbar_helper.rb +47 -32
- data/app/helpers/twitter_breadcrumbs_helper.rb +6 -2
- data/app/views/twitter-bootstrap/_breadcrumbs.html.erb +8 -8
- data/lib/generators/bootstrap/install/install_generator.rb +3 -2
- data/lib/generators/bootstrap/install/templates/bootstrap_and_overrides.less +13 -11
- data/lib/generators/bootstrap/install/templates/en.bootstrap.yml +5 -0
- data/lib/generators/bootstrap/layout/layout_generator.rb +1 -4
- data/lib/generators/bootstrap/layout/templates/layout.html.erb +27 -48
- data/lib/generators/bootstrap/layout/templates/layout.html.haml +19 -34
- data/lib/generators/bootstrap/layout/templates/layout.html.slim +13 -30
- data/lib/generators/bootstrap/partial/templates/_login.html.erb +2 -3
- data/lib/generators/bootstrap/themed/templates/_form.html.erb +30 -10
- data/lib/generators/bootstrap/themed/templates/_form.html.haml +10 -8
- data/lib/generators/bootstrap/themed/templates/_form.html.slim +11 -9
- data/lib/generators/bootstrap/themed/templates/edit.html.slim +1 -1
- data/lib/generators/bootstrap/themed/templates/index.html.erb +2 -2
- data/lib/generators/bootstrap/themed/templates/index.html.haml +2 -2
- data/lib/generators/bootstrap/themed/templates/index.html.slim +4 -5
- data/lib/generators/bootstrap/themed/templates/new.html.slim +1 -1
- data/lib/generators/bootstrap/themed/templates/show.html.erb +5 -7
- data/lib/generators/bootstrap/themed/templates/show.html.haml +4 -4
- data/lib/generators/bootstrap/themed/templates/show.html.slim +6 -7
- data/lib/generators/bootstrap/themed/templates/simple_form/_form.html.erb +5 -5
- data/lib/generators/bootstrap/themed/templates/simple_form/_form.html.haml +3 -3
- data/lib/generators/bootstrap/themed/templates/simple_form/_form.html.slim +4 -4
- data/lib/generators/bootstrap/themed/themed_generator.rb +2 -2
- data/lib/twitter/bootstrap/rails/breadcrumbs.rb +69 -0
- data/lib/twitter/bootstrap/rails/engine.rb +17 -10
- data/lib/twitter/bootstrap/rails/version.rb +2 -2
- data/spec/lib/breadcrumbs_spec.rb +99 -0
- data/spec/lib/twitter_bootstrap_rails/badge_label_helper_spec.rb +12 -4
- data/spec/lib/twitter_bootstrap_rails/bootstrap_flash_helper_spec.rb +128 -0
- data/spec/lib/twitter_bootstrap_rails/form_errors_helper_spec.rb +148 -0
- data/spec/lib/twitter_bootstrap_rails/glyph_helper_spec.rb +24 -0
- data/spec/lib/twitter_bootstrap_rails/modal_helper_spec.rb +15 -15
- data/spec/lib/twitter_bootstrap_rails/navbar_helper_spec.rb +207 -173
- data/spec/lib/twitter_bootstrap_rails/uri_state_spec.rb +18 -16
- data/spec/spec_helper.rb +11 -1
- data/vendor/assets/stylesheets/twitter-bootstrap-static/bootstrap.css.erb +5796 -1
- data/vendor/static-source/bootstrap.less +0 -1
- data/vendor/static-source/fontawesome.less +0 -1
- data/vendor/static-source/sprites.less +1 -1
- data/vendor/toolkit/fontawesome/bordered-pulled.less +16 -0
- data/vendor/toolkit/fontawesome/core.less +8 -126
- data/vendor/toolkit/fontawesome/fixed-width.less +6 -0
- data/vendor/toolkit/fontawesome/font-awesome.less +9 -25
- data/vendor/toolkit/fontawesome/icons.less +549 -378
- data/vendor/toolkit/fontawesome/larger.less +13 -0
- data/vendor/toolkit/fontawesome/list.less +19 -0
- data/vendor/toolkit/fontawesome/mixins.less +16 -39
- data/vendor/toolkit/fontawesome/path.less +5 -5
- data/vendor/toolkit/fontawesome/rotated-flipped.less +20 -0
- data/vendor/toolkit/fontawesome/spinning.less +29 -0
- data/vendor/toolkit/fontawesome/stacked.less +20 -0
- data/vendor/toolkit/fontawesome/variables.less +557 -731
- data/vendor/toolkit/twitter/bootstrap/alerts.less +47 -58
- data/vendor/toolkit/twitter/bootstrap/badges.less +55 -0
- data/vendor/toolkit/twitter/bootstrap/bootstrap.less +26 -39
- data/vendor/toolkit/twitter/bootstrap/breadcrumbs.less +11 -9
- data/vendor/toolkit/twitter/bootstrap/button-groups.less +168 -152
- data/vendor/toolkit/twitter/bootstrap/buttons.less +101 -170
- data/vendor/toolkit/twitter/bootstrap/carousel.less +150 -65
- data/vendor/toolkit/twitter/bootstrap/close.less +20 -19
- data/vendor/toolkit/twitter/bootstrap/code.less +38 -30
- data/vendor/toolkit/twitter/bootstrap/component-animations.less +12 -3
- data/vendor/toolkit/twitter/bootstrap/dropdowns.less +115 -148
- data/vendor/toolkit/twitter/bootstrap/forms.less +401 -547
- data/vendor/toolkit/twitter/bootstrap/glyphicons.less +234 -0
- data/vendor/toolkit/twitter/bootstrap/grid.less +74 -11
- data/vendor/toolkit/twitter/bootstrap/input-groups.less +166 -0
- data/vendor/toolkit/twitter/bootstrap/jumbotron.less +48 -0
- data/vendor/toolkit/twitter/bootstrap/labels.less +64 -0
- data/vendor/toolkit/twitter/bootstrap/list-group.less +132 -0
- data/vendor/toolkit/twitter/bootstrap/media.less +8 -7
- data/vendor/toolkit/twitter/bootstrap/mixins/alerts.less +14 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/background-variant.less +8 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/border-radius.less +18 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/buttons.less +52 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/center-block.less +7 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/clearfix.less +22 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/forms.less +85 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/gradients.less +59 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/grid-framework.less +91 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/grid.less +122 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/hide-text.less +21 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/image.less +33 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/labels.less +12 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/list-group.less +29 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/nav-divider.less +10 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/nav-vertical-align.less +9 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/opacity.less +8 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/pagination.less +23 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/panels.less +24 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/progress-bar.less +10 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/reset-filter.less +8 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/resize.less +6 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/responsive-visibility.less +15 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/size.less +10 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/tab-focus.less +9 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/table-row.less +28 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/text-emphasis.less +8 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/text-overflow.less +8 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/vendor-prefixes.less +224 -0
- data/vendor/toolkit/twitter/bootstrap/mixins.less +36 -699
- data/vendor/toolkit/twitter/bootstrap/modals.less +109 -54
- data/vendor/toolkit/twitter/bootstrap/navbar.less +542 -384
- data/vendor/toolkit/twitter/bootstrap/navs.less +192 -359
- data/vendor/toolkit/twitter/bootstrap/normalize.less +425 -0
- data/vendor/toolkit/twitter/bootstrap/pager.less +46 -34
- data/vendor/toolkit/twitter/bootstrap/pagination.less +70 -105
- data/vendor/toolkit/twitter/bootstrap/panels.less +248 -0
- data/vendor/toolkit/twitter/bootstrap/popovers.less +61 -61
- data/vendor/toolkit/twitter/bootstrap/print.less +101 -0
- data/vendor/toolkit/twitter/bootstrap/progress-bars.less +51 -73
- data/vendor/toolkit/twitter/bootstrap/responsive-embed.less +34 -0
- data/vendor/toolkit/twitter/bootstrap/responsive-utilities.less +177 -42
- data/vendor/toolkit/twitter/bootstrap/scaffolding.less +120 -23
- data/vendor/toolkit/twitter/bootstrap/tables.less +171 -182
- data/vendor/toolkit/twitter/bootstrap/theme.less +260 -0
- data/vendor/toolkit/twitter/bootstrap/thumbnails.less +26 -43
- data/vendor/toolkit/twitter/bootstrap/tooltip.less +49 -24
- data/vendor/toolkit/twitter/bootstrap/type.less +208 -147
- data/vendor/toolkit/twitter/bootstrap/utilities.less +33 -7
- data/vendor/toolkit/twitter/bootstrap/variables.less +761 -215
- data/vendor/toolkit/twitter/bootstrap/wells.less +7 -7
- metadata +156 -130
- data/app/assets/images/twitter/bootstrap/glyphicons-halflings-white.png +0 -0
- data/app/assets/images/twitter/bootstrap/glyphicons-halflings.png +0 -0
- data/app/assets/javascripts/twitter/bootstrap/bootstrap-affix.js +0 -117
- data/app/assets/javascripts/twitter/bootstrap/bootstrap-alert.js +0 -99
- data/app/assets/javascripts/twitter/bootstrap/bootstrap-button.js +0 -105
- data/app/assets/javascripts/twitter/bootstrap/bootstrap-carousel.js +0 -207
- data/app/assets/javascripts/twitter/bootstrap/bootstrap-collapse.js +0 -167
- data/app/assets/javascripts/twitter/bootstrap/bootstrap-dropdown.js +0 -169
- data/app/assets/javascripts/twitter/bootstrap/bootstrap-modal.js +0 -247
- data/app/assets/javascripts/twitter/bootstrap/bootstrap-popover.js +0 -114
- data/app/assets/javascripts/twitter/bootstrap/bootstrap-scrollspy.js +0 -162
- data/app/assets/javascripts/twitter/bootstrap/bootstrap-tab.js +0 -144
- data/app/assets/javascripts/twitter/bootstrap/bootstrap-tooltip.js +0 -361
- data/app/assets/javascripts/twitter/bootstrap/bootstrap-transition.js +0 -60
- data/app/assets/javascripts/twitter/bootstrap/bootstrap-typeahead.js +0 -335
- data/lib/twitter/bootstrap/rails/twitter-bootstrap-breadcrumbs.rb +0 -42
- data/test/lib/breadcrumbs_test.rb +0 -75
- data/test/test_helper.rb +0 -11
- data/vendor/toolkit/fontawesome/bootstrap.less +0 -84
- data/vendor/toolkit/fontawesome/extras.less +0 -93
- data/vendor/toolkit/fontawesome/font-awesome-ie7.less +0 -1953
- data/vendor/toolkit/twitter/bootstrap/accordion.less +0 -34
- data/vendor/toolkit/twitter/bootstrap/hero-unit.less +0 -25
- data/vendor/toolkit/twitter/bootstrap/labels-badges.less +0 -84
- data/vendor/toolkit/twitter/bootstrap/layouts.less +0 -16
- data/vendor/toolkit/twitter/bootstrap/reset.less +0 -216
- data/vendor/toolkit/twitter/bootstrap/responsive-1200px-min.less +0 -28
- data/vendor/toolkit/twitter/bootstrap/responsive-767px-max.less +0 -193
- data/vendor/toolkit/twitter/bootstrap/responsive-768px-979px.less +0 -19
- data/vendor/toolkit/twitter/bootstrap/responsive-navbar.less +0 -189
- data/vendor/toolkit/twitter/bootstrap/responsive.less +0 -48
- data/vendor/toolkit/twitter/bootstrap/sprites.less +0 -197
@@ -1,99 +0,0 @@
|
|
1
|
-
/* ==========================================================
|
2
|
-
* bootstrap-alert.js v2.3.2
|
3
|
-
* http://twitter.github.com/bootstrap/javascript.html#alerts
|
4
|
-
* ==========================================================
|
5
|
-
* Copyright 2012 Twitter, Inc.
|
6
|
-
*
|
7
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
-
* you may not use this file except in compliance with the License.
|
9
|
-
* You may obtain a copy of the License at
|
10
|
-
*
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
-
*
|
13
|
-
* Unless required by applicable law or agreed to in writing, software
|
14
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
-
* See the License for the specific language governing permissions and
|
17
|
-
* limitations under the License.
|
18
|
-
* ========================================================== */
|
19
|
-
|
20
|
-
|
21
|
-
!function ($) {
|
22
|
-
|
23
|
-
"use strict"; // jshint ;_;
|
24
|
-
|
25
|
-
|
26
|
-
/* ALERT CLASS DEFINITION
|
27
|
-
* ====================== */
|
28
|
-
|
29
|
-
var dismiss = '[data-dismiss="alert"]'
|
30
|
-
, Alert = function (el) {
|
31
|
-
$(el).on('click', dismiss, this.close)
|
32
|
-
}
|
33
|
-
|
34
|
-
Alert.prototype.close = function (e) {
|
35
|
-
var $this = $(this)
|
36
|
-
, selector = $this.attr('data-target')
|
37
|
-
, $parent
|
38
|
-
|
39
|
-
if (!selector) {
|
40
|
-
selector = $this.attr('href')
|
41
|
-
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
|
42
|
-
}
|
43
|
-
|
44
|
-
$parent = $(selector)
|
45
|
-
|
46
|
-
e && e.preventDefault()
|
47
|
-
|
48
|
-
$parent.length || ($parent = $this.hasClass('alert') ? $this : $this.parent())
|
49
|
-
|
50
|
-
$parent.trigger(e = $.Event('close'))
|
51
|
-
|
52
|
-
if (e.isDefaultPrevented()) return
|
53
|
-
|
54
|
-
$parent.removeClass('in')
|
55
|
-
|
56
|
-
function removeElement() {
|
57
|
-
$parent
|
58
|
-
.trigger('closed')
|
59
|
-
.remove()
|
60
|
-
}
|
61
|
-
|
62
|
-
$.support.transition && $parent.hasClass('fade') ?
|
63
|
-
$parent.on($.support.transition.end, removeElement) :
|
64
|
-
removeElement()
|
65
|
-
}
|
66
|
-
|
67
|
-
|
68
|
-
/* ALERT PLUGIN DEFINITION
|
69
|
-
* ======================= */
|
70
|
-
|
71
|
-
var old = $.fn.alert
|
72
|
-
|
73
|
-
$.fn.alert = function (option) {
|
74
|
-
return this.each(function () {
|
75
|
-
var $this = $(this)
|
76
|
-
, data = $this.data('alert')
|
77
|
-
if (!data) $this.data('alert', (data = new Alert(this)))
|
78
|
-
if (typeof option == 'string') data[option].call($this)
|
79
|
-
})
|
80
|
-
}
|
81
|
-
|
82
|
-
$.fn.alert.Constructor = Alert
|
83
|
-
|
84
|
-
|
85
|
-
/* ALERT NO CONFLICT
|
86
|
-
* ================= */
|
87
|
-
|
88
|
-
$.fn.alert.noConflict = function () {
|
89
|
-
$.fn.alert = old
|
90
|
-
return this
|
91
|
-
}
|
92
|
-
|
93
|
-
|
94
|
-
/* ALERT DATA-API
|
95
|
-
* ============== */
|
96
|
-
|
97
|
-
$(document).on('click.alert.data-api', dismiss, Alert.prototype.close)
|
98
|
-
|
99
|
-
}(window.jQuery);
|
@@ -1,105 +0,0 @@
|
|
1
|
-
/* ============================================================
|
2
|
-
* bootstrap-button.js v2.3.2
|
3
|
-
* http://twitter.github.com/bootstrap/javascript.html#buttons
|
4
|
-
* ============================================================
|
5
|
-
* Copyright 2012 Twitter, Inc.
|
6
|
-
*
|
7
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
-
* you may not use this file except in compliance with the License.
|
9
|
-
* You may obtain a copy of the License at
|
10
|
-
*
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
-
*
|
13
|
-
* Unless required by applicable law or agreed to in writing, software
|
14
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
-
* See the License for the specific language governing permissions and
|
17
|
-
* limitations under the License.
|
18
|
-
* ============================================================ */
|
19
|
-
|
20
|
-
|
21
|
-
!function ($) {
|
22
|
-
|
23
|
-
"use strict"; // jshint ;_;
|
24
|
-
|
25
|
-
|
26
|
-
/* BUTTON PUBLIC CLASS DEFINITION
|
27
|
-
* ============================== */
|
28
|
-
|
29
|
-
var Button = function (element, options) {
|
30
|
-
this.$element = $(element)
|
31
|
-
this.options = $.extend({}, $.fn.button.defaults, options)
|
32
|
-
}
|
33
|
-
|
34
|
-
Button.prototype.setState = function (state) {
|
35
|
-
var d = 'disabled'
|
36
|
-
, $el = this.$element
|
37
|
-
, data = $el.data()
|
38
|
-
, val = $el.is('input') ? 'val' : 'html'
|
39
|
-
|
40
|
-
state = state + 'Text'
|
41
|
-
data.resetText || $el.data('resetText', $el[val]())
|
42
|
-
|
43
|
-
$el[val](data[state] || this.options[state])
|
44
|
-
|
45
|
-
// push to event loop to allow forms to submit
|
46
|
-
setTimeout(function () {
|
47
|
-
state == 'loadingText' ?
|
48
|
-
$el.addClass(d).attr(d, d) :
|
49
|
-
$el.removeClass(d).removeAttr(d)
|
50
|
-
}, 0)
|
51
|
-
}
|
52
|
-
|
53
|
-
Button.prototype.toggle = function () {
|
54
|
-
var $parent = this.$element.closest('[data-toggle="buttons-radio"]')
|
55
|
-
|
56
|
-
$parent && $parent
|
57
|
-
.find('.active')
|
58
|
-
.removeClass('active')
|
59
|
-
|
60
|
-
this.$element.toggleClass('active')
|
61
|
-
}
|
62
|
-
|
63
|
-
|
64
|
-
/* BUTTON PLUGIN DEFINITION
|
65
|
-
* ======================== */
|
66
|
-
|
67
|
-
var old = $.fn.button
|
68
|
-
|
69
|
-
$.fn.button = function (option) {
|
70
|
-
return this.each(function () {
|
71
|
-
var $this = $(this)
|
72
|
-
, data = $this.data('button')
|
73
|
-
, options = typeof option == 'object' && option
|
74
|
-
if (!data) $this.data('button', (data = new Button(this, options)))
|
75
|
-
if (option == 'toggle') data.toggle()
|
76
|
-
else if (option) data.setState(option)
|
77
|
-
})
|
78
|
-
}
|
79
|
-
|
80
|
-
$.fn.button.defaults = {
|
81
|
-
loadingText: 'loading...'
|
82
|
-
}
|
83
|
-
|
84
|
-
$.fn.button.Constructor = Button
|
85
|
-
|
86
|
-
|
87
|
-
/* BUTTON NO CONFLICT
|
88
|
-
* ================== */
|
89
|
-
|
90
|
-
$.fn.button.noConflict = function () {
|
91
|
-
$.fn.button = old
|
92
|
-
return this
|
93
|
-
}
|
94
|
-
|
95
|
-
|
96
|
-
/* BUTTON DATA-API
|
97
|
-
* =============== */
|
98
|
-
|
99
|
-
$(document).on('click.button.data-api', '[data-toggle^=button]', function (e) {
|
100
|
-
var $btn = $(e.target)
|
101
|
-
if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
|
102
|
-
$btn.button('toggle')
|
103
|
-
})
|
104
|
-
|
105
|
-
}(window.jQuery);
|
@@ -1,207 +0,0 @@
|
|
1
|
-
/* ==========================================================
|
2
|
-
* bootstrap-carousel.js v2.3.2
|
3
|
-
* http://twitter.github.com/bootstrap/javascript.html#carousel
|
4
|
-
* ==========================================================
|
5
|
-
* Copyright 2012 Twitter, Inc.
|
6
|
-
*
|
7
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
-
* you may not use this file except in compliance with the License.
|
9
|
-
* You may obtain a copy of the License at
|
10
|
-
*
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
-
*
|
13
|
-
* Unless required by applicable law or agreed to in writing, software
|
14
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
-
* See the License for the specific language governing permissions and
|
17
|
-
* limitations under the License.
|
18
|
-
* ========================================================== */
|
19
|
-
|
20
|
-
|
21
|
-
!function ($) {
|
22
|
-
|
23
|
-
"use strict"; // jshint ;_;
|
24
|
-
|
25
|
-
|
26
|
-
/* CAROUSEL CLASS DEFINITION
|
27
|
-
* ========================= */
|
28
|
-
|
29
|
-
var Carousel = function (element, options) {
|
30
|
-
this.$element = $(element)
|
31
|
-
this.$indicators = this.$element.find('.carousel-indicators')
|
32
|
-
this.options = options
|
33
|
-
this.options.pause == 'hover' && this.$element
|
34
|
-
.on('mouseenter', $.proxy(this.pause, this))
|
35
|
-
.on('mouseleave', $.proxy(this.cycle, this))
|
36
|
-
}
|
37
|
-
|
38
|
-
Carousel.prototype = {
|
39
|
-
|
40
|
-
cycle: function (e) {
|
41
|
-
if (!e) this.paused = false
|
42
|
-
if (this.interval) clearInterval(this.interval);
|
43
|
-
this.options.interval
|
44
|
-
&& !this.paused
|
45
|
-
&& (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
|
46
|
-
return this
|
47
|
-
}
|
48
|
-
|
49
|
-
, getActiveIndex: function () {
|
50
|
-
this.$active = this.$element.find('.item.active')
|
51
|
-
this.$items = this.$active.parent().children()
|
52
|
-
return this.$items.index(this.$active)
|
53
|
-
}
|
54
|
-
|
55
|
-
, to: function (pos) {
|
56
|
-
var activeIndex = this.getActiveIndex()
|
57
|
-
, that = this
|
58
|
-
|
59
|
-
if (pos > (this.$items.length - 1) || pos < 0) return
|
60
|
-
|
61
|
-
if (this.sliding) {
|
62
|
-
return this.$element.one('slid', function () {
|
63
|
-
that.to(pos)
|
64
|
-
})
|
65
|
-
}
|
66
|
-
|
67
|
-
if (activeIndex == pos) {
|
68
|
-
return this.pause().cycle()
|
69
|
-
}
|
70
|
-
|
71
|
-
return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
|
72
|
-
}
|
73
|
-
|
74
|
-
, pause: function (e) {
|
75
|
-
if (!e) this.paused = true
|
76
|
-
if (this.$element.find('.next, .prev').length && $.support.transition.end) {
|
77
|
-
this.$element.trigger($.support.transition.end)
|
78
|
-
this.cycle(true)
|
79
|
-
}
|
80
|
-
clearInterval(this.interval)
|
81
|
-
this.interval = null
|
82
|
-
return this
|
83
|
-
}
|
84
|
-
|
85
|
-
, next: function () {
|
86
|
-
if (this.sliding) return
|
87
|
-
return this.slide('next')
|
88
|
-
}
|
89
|
-
|
90
|
-
, prev: function () {
|
91
|
-
if (this.sliding) return
|
92
|
-
return this.slide('prev')
|
93
|
-
}
|
94
|
-
|
95
|
-
, slide: function (type, next) {
|
96
|
-
var $active = this.$element.find('.item.active')
|
97
|
-
, $next = next || $active[type]()
|
98
|
-
, isCycling = this.interval
|
99
|
-
, direction = type == 'next' ? 'left' : 'right'
|
100
|
-
, fallback = type == 'next' ? 'first' : 'last'
|
101
|
-
, that = this
|
102
|
-
, e
|
103
|
-
|
104
|
-
this.sliding = true
|
105
|
-
|
106
|
-
isCycling && this.pause()
|
107
|
-
|
108
|
-
$next = $next.length ? $next : this.$element.find('.item')[fallback]()
|
109
|
-
|
110
|
-
e = $.Event('slide', {
|
111
|
-
relatedTarget: $next[0]
|
112
|
-
, direction: direction
|
113
|
-
})
|
114
|
-
|
115
|
-
if ($next.hasClass('active')) return
|
116
|
-
|
117
|
-
if (this.$indicators.length) {
|
118
|
-
this.$indicators.find('.active').removeClass('active')
|
119
|
-
this.$element.one('slid', function () {
|
120
|
-
var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
|
121
|
-
$nextIndicator && $nextIndicator.addClass('active')
|
122
|
-
})
|
123
|
-
}
|
124
|
-
|
125
|
-
if ($.support.transition && this.$element.hasClass('slide')) {
|
126
|
-
this.$element.trigger(e)
|
127
|
-
if (e.isDefaultPrevented()) return
|
128
|
-
$next.addClass(type)
|
129
|
-
$next[0].offsetWidth // force reflow
|
130
|
-
$active.addClass(direction)
|
131
|
-
$next.addClass(direction)
|
132
|
-
this.$element.one($.support.transition.end, function () {
|
133
|
-
$next.removeClass([type, direction].join(' ')).addClass('active')
|
134
|
-
$active.removeClass(['active', direction].join(' '))
|
135
|
-
that.sliding = false
|
136
|
-
setTimeout(function () { that.$element.trigger('slid') }, 0)
|
137
|
-
})
|
138
|
-
} else {
|
139
|
-
this.$element.trigger(e)
|
140
|
-
if (e.isDefaultPrevented()) return
|
141
|
-
$active.removeClass('active')
|
142
|
-
$next.addClass('active')
|
143
|
-
this.sliding = false
|
144
|
-
this.$element.trigger('slid')
|
145
|
-
}
|
146
|
-
|
147
|
-
isCycling && this.cycle()
|
148
|
-
|
149
|
-
return this
|
150
|
-
}
|
151
|
-
|
152
|
-
}
|
153
|
-
|
154
|
-
|
155
|
-
/* CAROUSEL PLUGIN DEFINITION
|
156
|
-
* ========================== */
|
157
|
-
|
158
|
-
var old = $.fn.carousel
|
159
|
-
|
160
|
-
$.fn.carousel = function (option) {
|
161
|
-
return this.each(function () {
|
162
|
-
var $this = $(this)
|
163
|
-
, data = $this.data('carousel')
|
164
|
-
, options = $.extend({}, $.fn.carousel.defaults, typeof option == 'object' && option)
|
165
|
-
, action = typeof option == 'string' ? option : options.slide
|
166
|
-
if (!data) $this.data('carousel', (data = new Carousel(this, options)))
|
167
|
-
if (typeof option == 'number') data.to(option)
|
168
|
-
else if (action) data[action]()
|
169
|
-
else if (options.interval) data.pause().cycle()
|
170
|
-
})
|
171
|
-
}
|
172
|
-
|
173
|
-
$.fn.carousel.defaults = {
|
174
|
-
interval: 5000
|
175
|
-
, pause: 'hover'
|
176
|
-
}
|
177
|
-
|
178
|
-
$.fn.carousel.Constructor = Carousel
|
179
|
-
|
180
|
-
|
181
|
-
/* CAROUSEL NO CONFLICT
|
182
|
-
* ==================== */
|
183
|
-
|
184
|
-
$.fn.carousel.noConflict = function () {
|
185
|
-
$.fn.carousel = old
|
186
|
-
return this
|
187
|
-
}
|
188
|
-
|
189
|
-
/* CAROUSEL DATA-API
|
190
|
-
* ================= */
|
191
|
-
|
192
|
-
$(document).on('click.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
|
193
|
-
var $this = $(this), href
|
194
|
-
, $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|
195
|
-
, options = $.extend({}, $target.data(), $this.data())
|
196
|
-
, slideIndex
|
197
|
-
|
198
|
-
$target.carousel(options)
|
199
|
-
|
200
|
-
if (slideIndex = $this.attr('data-slide-to')) {
|
201
|
-
$target.data('carousel').pause().to(slideIndex).cycle()
|
202
|
-
}
|
203
|
-
|
204
|
-
e.preventDefault()
|
205
|
-
})
|
206
|
-
|
207
|
-
}(window.jQuery);
|
@@ -1,167 +0,0 @@
|
|
1
|
-
/* =============================================================
|
2
|
-
* bootstrap-collapse.js v2.3.2
|
3
|
-
* http://twitter.github.com/bootstrap/javascript.html#collapse
|
4
|
-
* =============================================================
|
5
|
-
* Copyright 2012 Twitter, Inc.
|
6
|
-
*
|
7
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
-
* you may not use this file except in compliance with the License.
|
9
|
-
* You may obtain a copy of the License at
|
10
|
-
*
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
-
*
|
13
|
-
* Unless required by applicable law or agreed to in writing, software
|
14
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
-
* See the License for the specific language governing permissions and
|
17
|
-
* limitations under the License.
|
18
|
-
* ============================================================ */
|
19
|
-
|
20
|
-
|
21
|
-
!function ($) {
|
22
|
-
|
23
|
-
"use strict"; // jshint ;_;
|
24
|
-
|
25
|
-
|
26
|
-
/* COLLAPSE PUBLIC CLASS DEFINITION
|
27
|
-
* ================================ */
|
28
|
-
|
29
|
-
var Collapse = function (element, options) {
|
30
|
-
this.$element = $(element)
|
31
|
-
this.options = $.extend({}, $.fn.collapse.defaults, options)
|
32
|
-
|
33
|
-
if (this.options.parent) {
|
34
|
-
this.$parent = $(this.options.parent)
|
35
|
-
}
|
36
|
-
|
37
|
-
this.options.toggle && this.toggle()
|
38
|
-
}
|
39
|
-
|
40
|
-
Collapse.prototype = {
|
41
|
-
|
42
|
-
constructor: Collapse
|
43
|
-
|
44
|
-
, dimension: function () {
|
45
|
-
var hasWidth = this.$element.hasClass('width')
|
46
|
-
return hasWidth ? 'width' : 'height'
|
47
|
-
}
|
48
|
-
|
49
|
-
, show: function () {
|
50
|
-
var dimension
|
51
|
-
, scroll
|
52
|
-
, actives
|
53
|
-
, hasData
|
54
|
-
|
55
|
-
if (this.transitioning || this.$element.hasClass('in')) return
|
56
|
-
|
57
|
-
dimension = this.dimension()
|
58
|
-
scroll = $.camelCase(['scroll', dimension].join('-'))
|
59
|
-
actives = this.$parent && this.$parent.find('> .accordion-group > .in')
|
60
|
-
|
61
|
-
if (actives && actives.length) {
|
62
|
-
hasData = actives.data('collapse')
|
63
|
-
if (hasData && hasData.transitioning) return
|
64
|
-
actives.collapse('hide')
|
65
|
-
hasData || actives.data('collapse', null)
|
66
|
-
}
|
67
|
-
|
68
|
-
this.$element[dimension](0)
|
69
|
-
this.transition('addClass', $.Event('show'), 'shown')
|
70
|
-
$.support.transition && this.$element[dimension](this.$element[0][scroll])
|
71
|
-
}
|
72
|
-
|
73
|
-
, hide: function () {
|
74
|
-
var dimension
|
75
|
-
if (this.transitioning || !this.$element.hasClass('in')) return
|
76
|
-
dimension = this.dimension()
|
77
|
-
this.reset(this.$element[dimension]())
|
78
|
-
this.transition('removeClass', $.Event('hide'), 'hidden')
|
79
|
-
this.$element[dimension](0)
|
80
|
-
}
|
81
|
-
|
82
|
-
, reset: function (size) {
|
83
|
-
var dimension = this.dimension()
|
84
|
-
|
85
|
-
this.$element
|
86
|
-
.removeClass('collapse')
|
87
|
-
[dimension](size || 'auto')
|
88
|
-
[0].offsetWidth
|
89
|
-
|
90
|
-
this.$element[size !== null ? 'addClass' : 'removeClass']('collapse')
|
91
|
-
|
92
|
-
return this
|
93
|
-
}
|
94
|
-
|
95
|
-
, transition: function (method, startEvent, completeEvent) {
|
96
|
-
var that = this
|
97
|
-
, complete = function () {
|
98
|
-
if (startEvent.type == 'show') that.reset()
|
99
|
-
that.transitioning = 0
|
100
|
-
that.$element.trigger(completeEvent)
|
101
|
-
}
|
102
|
-
|
103
|
-
this.$element.trigger(startEvent)
|
104
|
-
|
105
|
-
if (startEvent.isDefaultPrevented()) return
|
106
|
-
|
107
|
-
this.transitioning = 1
|
108
|
-
|
109
|
-
this.$element[method]('in')
|
110
|
-
|
111
|
-
$.support.transition && this.$element.hasClass('collapse') ?
|
112
|
-
this.$element.one($.support.transition.end, complete) :
|
113
|
-
complete()
|
114
|
-
}
|
115
|
-
|
116
|
-
, toggle: function () {
|
117
|
-
this[this.$element.hasClass('in') ? 'hide' : 'show']()
|
118
|
-
}
|
119
|
-
|
120
|
-
}
|
121
|
-
|
122
|
-
|
123
|
-
/* COLLAPSE PLUGIN DEFINITION
|
124
|
-
* ========================== */
|
125
|
-
|
126
|
-
var old = $.fn.collapse
|
127
|
-
|
128
|
-
$.fn.collapse = function (option) {
|
129
|
-
return this.each(function () {
|
130
|
-
var $this = $(this)
|
131
|
-
, data = $this.data('collapse')
|
132
|
-
, options = $.extend({}, $.fn.collapse.defaults, $this.data(), typeof option == 'object' && option)
|
133
|
-
if (!data) $this.data('collapse', (data = new Collapse(this, options)))
|
134
|
-
if (typeof option == 'string') data[option]()
|
135
|
-
})
|
136
|
-
}
|
137
|
-
|
138
|
-
$.fn.collapse.defaults = {
|
139
|
-
toggle: true
|
140
|
-
}
|
141
|
-
|
142
|
-
$.fn.collapse.Constructor = Collapse
|
143
|
-
|
144
|
-
|
145
|
-
/* COLLAPSE NO CONFLICT
|
146
|
-
* ==================== */
|
147
|
-
|
148
|
-
$.fn.collapse.noConflict = function () {
|
149
|
-
$.fn.collapse = old
|
150
|
-
return this
|
151
|
-
}
|
152
|
-
|
153
|
-
|
154
|
-
/* COLLAPSE DATA-API
|
155
|
-
* ================= */
|
156
|
-
|
157
|
-
$(document).on('click.collapse.data-api', '[data-toggle=collapse]', function (e) {
|
158
|
-
var $this = $(this), href
|
159
|
-
, target = $this.attr('data-target')
|
160
|
-
|| e.preventDefault()
|
161
|
-
|| (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
|
162
|
-
, option = $(target).data('collapse') ? 'toggle' : $this.data()
|
163
|
-
$this[$(target).hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
|
164
|
-
$(target).collapse(option)
|
165
|
-
})
|
166
|
-
|
167
|
-
}(window.jQuery);
|