twbs_less_rails 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +12 -0
- data/CONTRIBUTING.md +45 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +144 -0
- data/LICENSE +30 -0
- data/README.md +147 -0
- data/Rakefile +113 -0
- data/app/assets/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/fonts/fontawesome-webfont.svg +399 -0
- 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/gemfiles/Gemfile.rails-3.2.x +9 -0
- data/gemfiles/Gemfile.rails-4.0.x +9 -0
- data/lib/generators/twbs_less_rails/install/install_generator.rb +31 -0
- data/lib/generators/twbs_less_rails/install/templates/application.css +15 -0
- data/lib/generators/twbs_less_rails/install/templates/application.js +17 -0
- data/lib/generators/twbs_less_rails/install/templates/twbs-variables.css.less +5 -0
- data/lib/generators/twbs_less_rails/install/templates/twbs.css.less +14 -0
- data/lib/generators/twbs_less_rails/install/templates/twbs.js.coffee +7 -0
- data/lib/tasks/twbs_less_rails_tasks.rake +4 -0
- data/lib/twbs_less_rails/engine.rb +7 -0
- data/lib/twbs_less_rails/version.rb +3 -0
- data/lib/twbs_less_rails.rb +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/images/.keep +0 -0
- data/test/dummy/app/assets/javascripts/application.js +14 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/assets/stylesheets/default-twbs.css.less +1 -0
- data/test/dummy/app/assets/stylesheets/test.css.less +5 -0
- data/test/dummy/app/assets/stylesheets/twbs-variables.css.less +6 -0
- data/test/dummy/app/assets/stylesheets/twbs.css.less +14 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/concerns/.keep +0 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/mailers/.keep +0 -0
- data/test/dummy/app/models/.keep +0 -0
- data/test/dummy/app/models/concerns/.keep +0 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config/application.rb +27 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +18 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/.keep +0 -0
- data/test/dummy/lib/assets/.keep +0 -0
- data/test/dummy/log/.keep +0 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/generators/default_rails_assets/application.css +13 -0
- data/test/generators/default_rails_assets/application.js +16 -0
- data/test/generators/install_generator_test.rb +47 -0
- data/test/integration/assets_precompile_integration_test.rb +49 -0
- data/test/integration/twbs_less_rails_integration_test.rb +38 -0
- data/test/test_helper.rb +38 -0
- data/twbs_less_rails.gemspec +34 -0
- data/vendor/assets/javascripts/respond.js +342 -0
- data/vendor/assets/javascripts/twbs/bootstrap/affix.js +126 -0
- data/vendor/assets/javascripts/twbs/bootstrap/alert.js +98 -0
- data/vendor/assets/javascripts/twbs/bootstrap/button.js +109 -0
- data/vendor/assets/javascripts/twbs/bootstrap/carousel.js +217 -0
- data/vendor/assets/javascripts/twbs/bootstrap/collapse.js +179 -0
- data/vendor/assets/javascripts/twbs/bootstrap/dropdown.js +154 -0
- data/vendor/assets/javascripts/twbs/bootstrap/modal.js +246 -0
- data/vendor/assets/javascripts/twbs/bootstrap/popover.js +117 -0
- data/vendor/assets/javascripts/twbs/bootstrap/scrollspy.js +158 -0
- data/vendor/assets/javascripts/twbs/bootstrap/tab.js +135 -0
- data/vendor/assets/javascripts/twbs/bootstrap/tooltip.js +386 -0
- data/vendor/assets/javascripts/twbs/bootstrap/transition.js +56 -0
- data/vendor/assets/javascripts/twbs/bootstrap.js +12 -0
- data/vendor/assets/stylesheets/fontawesome/bootstrap.less +84 -0
- data/vendor/assets/stylesheets/fontawesome/core.less +129 -0
- data/vendor/assets/stylesheets/fontawesome/extras.less +93 -0
- data/vendor/assets/stylesheets/fontawesome/font-awesome.less +33 -0
- data/vendor/assets/stylesheets/fontawesome/icons.less +381 -0
- data/vendor/assets/stylesheets/fontawesome/mixins.less +48 -0
- data/vendor/assets/stylesheets/fontawesome/path.less +14 -0
- data/vendor/assets/stylesheets/fontawesome/variables.less +735 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/alerts.less +67 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/badges.less +51 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/bootstrap.less +48 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/breadcrumbs.less +23 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/button-groups.less +248 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/buttons.less +158 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/carousel.less +220 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/close.less +33 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/code.less +53 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/component-animations.less +29 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/dropdowns.less +192 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/forms.less +366 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/glyphicons.less +236 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/grid.less +93 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/input-groups.less +136 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/jumbotron.less +40 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/labels.less +58 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/list-group.less +88 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/media.less +56 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/mixins.less +846 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/modals.less +131 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/navbar.less +621 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/navs.less +257 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/normalize.less +406 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/pager.less +55 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/pagination.less +85 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/panels.less +168 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/popovers.less +133 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/print.less +100 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/progress-bars.less +96 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/responsive-utilities.less +209 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/scaffolding.less +119 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/tables.less +236 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/theme.less +246 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/thumbnails.less +33 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/tooltip.less +95 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/type.less +273 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/utilities.less +56 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/variables.less +637 -0
- data/vendor/assets/stylesheets/twbs/bootstrap/wells.less +29 -0
- data/vendor/assets/stylesheets/twbs/bootstrap.less +1 -0
- metadata +387 -0
@@ -0,0 +1,98 @@
|
|
1
|
+
/* ========================================================================
|
2
|
+
* Bootstrap: alert.js v3.0.0
|
3
|
+
* http://twbs.github.com/bootstrap/javascript.html#alerts
|
4
|
+
* ========================================================================
|
5
|
+
* Copyright 2013 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 ($) { "use strict";
|
22
|
+
|
23
|
+
// ALERT CLASS DEFINITION
|
24
|
+
// ======================
|
25
|
+
|
26
|
+
var dismiss = '[data-dismiss="alert"]'
|
27
|
+
var Alert = function (el) {
|
28
|
+
$(el).on('click', dismiss, this.close)
|
29
|
+
}
|
30
|
+
|
31
|
+
Alert.prototype.close = function (e) {
|
32
|
+
var $this = $(this)
|
33
|
+
var selector = $this.attr('data-target')
|
34
|
+
|
35
|
+
if (!selector) {
|
36
|
+
selector = $this.attr('href')
|
37
|
+
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
38
|
+
}
|
39
|
+
|
40
|
+
var $parent = $(selector)
|
41
|
+
|
42
|
+
if (e) e.preventDefault()
|
43
|
+
|
44
|
+
if (!$parent.length) {
|
45
|
+
$parent = $this.hasClass('alert') ? $this : $this.parent()
|
46
|
+
}
|
47
|
+
|
48
|
+
$parent.trigger(e = $.Event('close.bs.alert'))
|
49
|
+
|
50
|
+
if (e.isDefaultPrevented()) return
|
51
|
+
|
52
|
+
$parent.removeClass('in')
|
53
|
+
|
54
|
+
function removeElement() {
|
55
|
+
$parent.trigger('closed.bs.alert').remove()
|
56
|
+
}
|
57
|
+
|
58
|
+
$.support.transition && $parent.hasClass('fade') ?
|
59
|
+
$parent
|
60
|
+
.one($.support.transition.end, removeElement)
|
61
|
+
.emulateTransitionEnd(150) :
|
62
|
+
removeElement()
|
63
|
+
}
|
64
|
+
|
65
|
+
|
66
|
+
// ALERT PLUGIN DEFINITION
|
67
|
+
// =======================
|
68
|
+
|
69
|
+
var old = $.fn.alert
|
70
|
+
|
71
|
+
$.fn.alert = function (option) {
|
72
|
+
return this.each(function () {
|
73
|
+
var $this = $(this)
|
74
|
+
var data = $this.data('bs.alert')
|
75
|
+
|
76
|
+
if (!data) $this.data('bs.alert', (data = new Alert(this)))
|
77
|
+
if (typeof option == 'string') data[option].call($this)
|
78
|
+
})
|
79
|
+
}
|
80
|
+
|
81
|
+
$.fn.alert.Constructor = Alert
|
82
|
+
|
83
|
+
|
84
|
+
// ALERT NO CONFLICT
|
85
|
+
// =================
|
86
|
+
|
87
|
+
$.fn.alert.noConflict = function () {
|
88
|
+
$.fn.alert = old
|
89
|
+
return this
|
90
|
+
}
|
91
|
+
|
92
|
+
|
93
|
+
// ALERT DATA-API
|
94
|
+
// ==============
|
95
|
+
|
96
|
+
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
|
97
|
+
|
98
|
+
}(window.jQuery);
|
@@ -0,0 +1,109 @@
|
|
1
|
+
/* ========================================================================
|
2
|
+
* Bootstrap: button.js v3.0.0
|
3
|
+
* http://twbs.github.com/bootstrap/javascript.html#buttons
|
4
|
+
* ========================================================================
|
5
|
+
* Copyright 2013 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 ($) { "use strict";
|
22
|
+
|
23
|
+
// BUTTON PUBLIC CLASS DEFINITION
|
24
|
+
// ==============================
|
25
|
+
|
26
|
+
var Button = function (element, options) {
|
27
|
+
this.$element = $(element)
|
28
|
+
this.options = $.extend({}, Button.DEFAULTS, options)
|
29
|
+
}
|
30
|
+
|
31
|
+
Button.DEFAULTS = {
|
32
|
+
loadingText: 'loading...'
|
33
|
+
}
|
34
|
+
|
35
|
+
Button.prototype.setState = function (state) {
|
36
|
+
var d = 'disabled'
|
37
|
+
var $el = this.$element
|
38
|
+
var val = $el.is('input') ? 'val' : 'html'
|
39
|
+
var data = $el.data()
|
40
|
+
|
41
|
+
state = state + 'Text'
|
42
|
+
|
43
|
+
if (!data.resetText) $el.data('resetText', $el[val]())
|
44
|
+
|
45
|
+
$el[val](data[state] || this.options[state])
|
46
|
+
|
47
|
+
// push to event loop to allow forms to submit
|
48
|
+
setTimeout(function () {
|
49
|
+
state == 'loadingText' ?
|
50
|
+
$el.addClass(d).attr(d, d) :
|
51
|
+
$el.removeClass(d).removeAttr(d);
|
52
|
+
}, 0)
|
53
|
+
}
|
54
|
+
|
55
|
+
Button.prototype.toggle = function () {
|
56
|
+
var $parent = this.$element.closest('[data-toggle="buttons"]')
|
57
|
+
|
58
|
+
if ($parent.length) {
|
59
|
+
var $input = this.$element.find('input')
|
60
|
+
.prop('checked', !this.$element.hasClass('active'))
|
61
|
+
.trigger('change')
|
62
|
+
if ($input.prop('type') === 'radio') $parent.find('.active').removeClass('active')
|
63
|
+
}
|
64
|
+
|
65
|
+
this.$element.toggleClass('active')
|
66
|
+
}
|
67
|
+
|
68
|
+
|
69
|
+
// BUTTON PLUGIN DEFINITION
|
70
|
+
// ========================
|
71
|
+
|
72
|
+
var old = $.fn.button
|
73
|
+
|
74
|
+
$.fn.button = function (option) {
|
75
|
+
return this.each(function () {
|
76
|
+
var $this = $(this)
|
77
|
+
var data = $this.data('bs.button')
|
78
|
+
var options = typeof option == 'object' && option
|
79
|
+
|
80
|
+
if (!data) $this.data('bs.button', (data = new Button(this, options)))
|
81
|
+
|
82
|
+
if (option == 'toggle') data.toggle()
|
83
|
+
else if (option) data.setState(option)
|
84
|
+
})
|
85
|
+
}
|
86
|
+
|
87
|
+
$.fn.button.Constructor = Button
|
88
|
+
|
89
|
+
|
90
|
+
// BUTTON NO CONFLICT
|
91
|
+
// ==================
|
92
|
+
|
93
|
+
$.fn.button.noConflict = function () {
|
94
|
+
$.fn.button = old
|
95
|
+
return this
|
96
|
+
}
|
97
|
+
|
98
|
+
|
99
|
+
// BUTTON DATA-API
|
100
|
+
// ===============
|
101
|
+
|
102
|
+
$(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) {
|
103
|
+
var $btn = $(e.target)
|
104
|
+
if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
|
105
|
+
$btn.button('toggle')
|
106
|
+
e.preventDefault()
|
107
|
+
})
|
108
|
+
|
109
|
+
}(window.jQuery);
|
@@ -0,0 +1,217 @@
|
|
1
|
+
/* ========================================================================
|
2
|
+
* Bootstrap: carousel.js v3.0.0
|
3
|
+
* http://twbs.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 ($) { "use strict";
|
22
|
+
|
23
|
+
// CAROUSEL CLASS DEFINITION
|
24
|
+
// =========================
|
25
|
+
|
26
|
+
var Carousel = function (element, options) {
|
27
|
+
this.$element = $(element)
|
28
|
+
this.$indicators = this.$element.find('.carousel-indicators')
|
29
|
+
this.options = options
|
30
|
+
this.paused =
|
31
|
+
this.sliding =
|
32
|
+
this.interval =
|
33
|
+
this.$active =
|
34
|
+
this.$items = null
|
35
|
+
|
36
|
+
this.options.pause == 'hover' && this.$element
|
37
|
+
.on('mouseenter', $.proxy(this.pause, this))
|
38
|
+
.on('mouseleave', $.proxy(this.cycle, this))
|
39
|
+
}
|
40
|
+
|
41
|
+
Carousel.DEFAULTS = {
|
42
|
+
interval: 5000
|
43
|
+
, pause: 'hover'
|
44
|
+
, wrap: true
|
45
|
+
}
|
46
|
+
|
47
|
+
Carousel.prototype.cycle = function (e) {
|
48
|
+
e || (this.paused = false)
|
49
|
+
|
50
|
+
this.interval && clearInterval(this.interval)
|
51
|
+
|
52
|
+
this.options.interval
|
53
|
+
&& !this.paused
|
54
|
+
&& (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
|
55
|
+
|
56
|
+
return this
|
57
|
+
}
|
58
|
+
|
59
|
+
Carousel.prototype.getActiveIndex = function () {
|
60
|
+
this.$active = this.$element.find('.item.active')
|
61
|
+
this.$items = this.$active.parent().children()
|
62
|
+
|
63
|
+
return this.$items.index(this.$active)
|
64
|
+
}
|
65
|
+
|
66
|
+
Carousel.prototype.to = function (pos) {
|
67
|
+
var that = this
|
68
|
+
var activeIndex = this.getActiveIndex()
|
69
|
+
|
70
|
+
if (pos > (this.$items.length - 1) || pos < 0) return
|
71
|
+
|
72
|
+
if (this.sliding) return this.$element.one('slid', function () { that.to(pos) })
|
73
|
+
if (activeIndex == pos) return this.pause().cycle()
|
74
|
+
|
75
|
+
return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
|
76
|
+
}
|
77
|
+
|
78
|
+
Carousel.prototype.pause = function (e) {
|
79
|
+
e || (this.paused = true)
|
80
|
+
|
81
|
+
if (this.$element.find('.next, .prev').length && $.support.transition.end) {
|
82
|
+
this.$element.trigger($.support.transition.end)
|
83
|
+
this.cycle(true)
|
84
|
+
}
|
85
|
+
|
86
|
+
this.interval = clearInterval(this.interval)
|
87
|
+
|
88
|
+
return this
|
89
|
+
}
|
90
|
+
|
91
|
+
Carousel.prototype.next = function () {
|
92
|
+
if (this.sliding) return
|
93
|
+
return this.slide('next')
|
94
|
+
}
|
95
|
+
|
96
|
+
Carousel.prototype.prev = function () {
|
97
|
+
if (this.sliding) return
|
98
|
+
return this.slide('prev')
|
99
|
+
}
|
100
|
+
|
101
|
+
Carousel.prototype.slide = function (type, next) {
|
102
|
+
var $active = this.$element.find('.item.active')
|
103
|
+
var $next = next || $active[type]()
|
104
|
+
var isCycling = this.interval
|
105
|
+
var direction = type == 'next' ? 'left' : 'right'
|
106
|
+
var fallback = type == 'next' ? 'first' : 'last'
|
107
|
+
var that = this
|
108
|
+
|
109
|
+
if (!$next.length) {
|
110
|
+
if (!this.options.wrap) return
|
111
|
+
$next = this.$element.find('.item')[fallback]()
|
112
|
+
}
|
113
|
+
|
114
|
+
this.sliding = true
|
115
|
+
|
116
|
+
isCycling && this.pause()
|
117
|
+
|
118
|
+
var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction })
|
119
|
+
|
120
|
+
if ($next.hasClass('active')) return
|
121
|
+
|
122
|
+
if (this.$indicators.length) {
|
123
|
+
this.$indicators.find('.active').removeClass('active')
|
124
|
+
this.$element.one('slid', function () {
|
125
|
+
var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
|
126
|
+
$nextIndicator && $nextIndicator.addClass('active')
|
127
|
+
})
|
128
|
+
}
|
129
|
+
|
130
|
+
if ($.support.transition && this.$element.hasClass('slide')) {
|
131
|
+
this.$element.trigger(e)
|
132
|
+
if (e.isDefaultPrevented()) return
|
133
|
+
$next.addClass(type)
|
134
|
+
$next[0].offsetWidth // force reflow
|
135
|
+
$active.addClass(direction)
|
136
|
+
$next.addClass(direction)
|
137
|
+
$active
|
138
|
+
.one($.support.transition.end, function () {
|
139
|
+
$next.removeClass([type, direction].join(' ')).addClass('active')
|
140
|
+
$active.removeClass(['active', direction].join(' '))
|
141
|
+
that.sliding = false
|
142
|
+
setTimeout(function () { that.$element.trigger('slid') }, 0)
|
143
|
+
})
|
144
|
+
.emulateTransitionEnd(600)
|
145
|
+
} else {
|
146
|
+
this.$element.trigger(e)
|
147
|
+
if (e.isDefaultPrevented()) return
|
148
|
+
$active.removeClass('active')
|
149
|
+
$next.addClass('active')
|
150
|
+
this.sliding = false
|
151
|
+
this.$element.trigger('slid')
|
152
|
+
}
|
153
|
+
|
154
|
+
isCycling && this.cycle()
|
155
|
+
|
156
|
+
return this
|
157
|
+
}
|
158
|
+
|
159
|
+
|
160
|
+
// CAROUSEL PLUGIN DEFINITION
|
161
|
+
// ==========================
|
162
|
+
|
163
|
+
var old = $.fn.carousel
|
164
|
+
|
165
|
+
$.fn.carousel = function (option) {
|
166
|
+
return this.each(function () {
|
167
|
+
var $this = $(this)
|
168
|
+
var data = $this.data('bs.carousel')
|
169
|
+
var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
170
|
+
var action = typeof option == 'string' ? option : options.slide
|
171
|
+
|
172
|
+
if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
|
173
|
+
if (typeof option == 'number') data.to(option)
|
174
|
+
else if (action) data[action]()
|
175
|
+
else if (options.interval) data.pause().cycle()
|
176
|
+
})
|
177
|
+
}
|
178
|
+
|
179
|
+
$.fn.carousel.Constructor = Carousel
|
180
|
+
|
181
|
+
|
182
|
+
// CAROUSEL NO CONFLICT
|
183
|
+
// ====================
|
184
|
+
|
185
|
+
$.fn.carousel.noConflict = function () {
|
186
|
+
$.fn.carousel = old
|
187
|
+
return this
|
188
|
+
}
|
189
|
+
|
190
|
+
|
191
|
+
// CAROUSEL DATA-API
|
192
|
+
// =================
|
193
|
+
|
194
|
+
$(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
|
195
|
+
var $this = $(this), href
|
196
|
+
var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|
197
|
+
var options = $.extend({}, $target.data(), $this.data())
|
198
|
+
var slideIndex = $this.attr('data-slide-to')
|
199
|
+
if (slideIndex) options.interval = false
|
200
|
+
|
201
|
+
$target.carousel(options)
|
202
|
+
|
203
|
+
if (slideIndex = $this.attr('data-slide-to')) {
|
204
|
+
$target.data('bs.carousel').to(slideIndex)
|
205
|
+
}
|
206
|
+
|
207
|
+
e.preventDefault()
|
208
|
+
})
|
209
|
+
|
210
|
+
$(window).on('load', function () {
|
211
|
+
$('[data-ride="carousel"]').each(function () {
|
212
|
+
var $carousel = $(this)
|
213
|
+
$carousel.carousel($carousel.data())
|
214
|
+
})
|
215
|
+
})
|
216
|
+
|
217
|
+
}(window.jQuery);
|
@@ -0,0 +1,179 @@
|
|
1
|
+
/* ========================================================================
|
2
|
+
* Bootstrap: collapse.js v3.0.0
|
3
|
+
* http://twbs.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 ($) { "use strict";
|
22
|
+
|
23
|
+
// COLLAPSE PUBLIC CLASS DEFINITION
|
24
|
+
// ================================
|
25
|
+
|
26
|
+
var Collapse = function (element, options) {
|
27
|
+
this.$element = $(element)
|
28
|
+
this.options = $.extend({}, Collapse.DEFAULTS, options)
|
29
|
+
this.transitioning = null
|
30
|
+
|
31
|
+
if (this.options.parent) this.$parent = $(this.options.parent)
|
32
|
+
if (this.options.toggle) this.toggle()
|
33
|
+
}
|
34
|
+
|
35
|
+
Collapse.DEFAULTS = {
|
36
|
+
toggle: true
|
37
|
+
}
|
38
|
+
|
39
|
+
Collapse.prototype.dimension = function () {
|
40
|
+
var hasWidth = this.$element.hasClass('width')
|
41
|
+
return hasWidth ? 'width' : 'height'
|
42
|
+
}
|
43
|
+
|
44
|
+
Collapse.prototype.show = function () {
|
45
|
+
if (this.transitioning || this.$element.hasClass('in')) return
|
46
|
+
|
47
|
+
var startEvent = $.Event('show.bs.collapse')
|
48
|
+
this.$element.trigger(startEvent)
|
49
|
+
if (startEvent.isDefaultPrevented()) return
|
50
|
+
|
51
|
+
var actives = this.$parent && this.$parent.find('> .panel > .in')
|
52
|
+
|
53
|
+
if (actives && actives.length) {
|
54
|
+
var hasData = actives.data('bs.collapse')
|
55
|
+
if (hasData && hasData.transitioning) return
|
56
|
+
actives.collapse('hide')
|
57
|
+
hasData || actives.data('bs.collapse', null)
|
58
|
+
}
|
59
|
+
|
60
|
+
var dimension = this.dimension()
|
61
|
+
|
62
|
+
this.$element
|
63
|
+
.removeClass('collapse')
|
64
|
+
.addClass('collapsing')
|
65
|
+
[dimension](0)
|
66
|
+
|
67
|
+
this.transitioning = 1
|
68
|
+
|
69
|
+
var complete = function () {
|
70
|
+
this.$element
|
71
|
+
.removeClass('collapsing')
|
72
|
+
.addClass('in')
|
73
|
+
[dimension]('auto')
|
74
|
+
this.transitioning = 0
|
75
|
+
this.$element.trigger('shown.bs.collapse')
|
76
|
+
}
|
77
|
+
|
78
|
+
if (!$.support.transition) return complete.call(this)
|
79
|
+
|
80
|
+
var scrollSize = $.camelCase(['scroll', dimension].join('-'))
|
81
|
+
|
82
|
+
this.$element
|
83
|
+
.one($.support.transition.end, $.proxy(complete, this))
|
84
|
+
.emulateTransitionEnd(350)
|
85
|
+
[dimension](this.$element[0][scrollSize])
|
86
|
+
}
|
87
|
+
|
88
|
+
Collapse.prototype.hide = function () {
|
89
|
+
if (this.transitioning || !this.$element.hasClass('in')) return
|
90
|
+
|
91
|
+
var startEvent = $.Event('hide.bs.collapse')
|
92
|
+
this.$element.trigger(startEvent)
|
93
|
+
if (startEvent.isDefaultPrevented()) return
|
94
|
+
|
95
|
+
var dimension = this.dimension()
|
96
|
+
|
97
|
+
this.$element
|
98
|
+
[dimension](this.$element[dimension]())
|
99
|
+
[0].offsetHeight
|
100
|
+
|
101
|
+
this.$element
|
102
|
+
.addClass('collapsing')
|
103
|
+
.removeClass('collapse')
|
104
|
+
.removeClass('in')
|
105
|
+
|
106
|
+
this.transitioning = 1
|
107
|
+
|
108
|
+
var complete = function () {
|
109
|
+
this.transitioning = 0
|
110
|
+
this.$element
|
111
|
+
.trigger('hidden.bs.collapse')
|
112
|
+
.removeClass('collapsing')
|
113
|
+
.addClass('collapse')
|
114
|
+
}
|
115
|
+
|
116
|
+
if (!$.support.transition) return complete.call(this)
|
117
|
+
|
118
|
+
this.$element
|
119
|
+
[dimension](0)
|
120
|
+
.one($.support.transition.end, $.proxy(complete, this))
|
121
|
+
.emulateTransitionEnd(350)
|
122
|
+
}
|
123
|
+
|
124
|
+
Collapse.prototype.toggle = function () {
|
125
|
+
this[this.$element.hasClass('in') ? 'hide' : 'show']()
|
126
|
+
}
|
127
|
+
|
128
|
+
|
129
|
+
// COLLAPSE PLUGIN DEFINITION
|
130
|
+
// ==========================
|
131
|
+
|
132
|
+
var old = $.fn.collapse
|
133
|
+
|
134
|
+
$.fn.collapse = function (option) {
|
135
|
+
return this.each(function () {
|
136
|
+
var $this = $(this)
|
137
|
+
var data = $this.data('bs.collapse')
|
138
|
+
var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
139
|
+
|
140
|
+
if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
|
141
|
+
if (typeof option == 'string') data[option]()
|
142
|
+
})
|
143
|
+
}
|
144
|
+
|
145
|
+
$.fn.collapse.Constructor = Collapse
|
146
|
+
|
147
|
+
|
148
|
+
// COLLAPSE NO CONFLICT
|
149
|
+
// ====================
|
150
|
+
|
151
|
+
$.fn.collapse.noConflict = function () {
|
152
|
+
$.fn.collapse = old
|
153
|
+
return this
|
154
|
+
}
|
155
|
+
|
156
|
+
|
157
|
+
// COLLAPSE DATA-API
|
158
|
+
// =================
|
159
|
+
|
160
|
+
$(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) {
|
161
|
+
var $this = $(this), href
|
162
|
+
var target = $this.attr('data-target')
|
163
|
+
|| e.preventDefault()
|
164
|
+
|| (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
|
165
|
+
var $target = $(target)
|
166
|
+
var data = $target.data('bs.collapse')
|
167
|
+
var option = data ? 'toggle' : $this.data()
|
168
|
+
var parent = $this.attr('data-parent')
|
169
|
+
var $parent = parent && $(parent)
|
170
|
+
|
171
|
+
if (!data || !data.transitioning) {
|
172
|
+
if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addClass('collapsed')
|
173
|
+
$this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
|
174
|
+
}
|
175
|
+
|
176
|
+
$target.collapse(option)
|
177
|
+
})
|
178
|
+
|
179
|
+
}(window.jQuery);
|