drink_up_doctor 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +32 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +74 -0
- data/Rakefile +11 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/bootstrap-boilerplate/.gitignore +8 -0
- data/bootstrap-boilerplate/404.html +25 -0
- data/bootstrap-boilerplate/README.md.tt +88 -0
- data/bootstrap-boilerplate/_includes/footer.html +18 -0
- data/bootstrap-boilerplate/_includes/google_analytics.html +10 -0
- data/bootstrap-boilerplate/_includes/head.html +11 -0
- data/bootstrap-boilerplate/_includes/header.html +27 -0
- data/bootstrap-boilerplate/_includes/index_item.html +5 -0
- data/bootstrap-boilerplate/_includes/page_js.html +4 -0
- data/bootstrap-boilerplate/_layouts/category_index.html +12 -0
- data/bootstrap-boilerplate/_layouts/default.html +22 -0
- data/bootstrap-boilerplate/_layouts/page.html +13 -0
- data/bootstrap-boilerplate/_layouts/post.html +13 -0
- data/bootstrap-boilerplate/_layouts/tag_index.html +14 -0
- data/bootstrap-boilerplate/_plugins/category_index.rb +42 -0
- data/bootstrap-boilerplate/_plugins/slug_sort.rb +13 -0
- data/bootstrap-boilerplate/_plugins/tag_index.rb +41 -0
- data/bootstrap-boilerplate/_posts/2015-10-18-post-four.md +17 -0
- data/bootstrap-boilerplate/_posts/2015-10-18-post-one.md +12 -0
- data/bootstrap-boilerplate/_posts/2015-10-18-post-three.md +20 -0
- data/bootstrap-boilerplate/_posts/2015-10-18-post-two.md +16 -0
- data/bootstrap-boilerplate/_posts/2015-10-18-welcome.md +8 -0
- data/bootstrap-boilerplate/_sass/_bootstrap-compass.scss +9 -0
- data/bootstrap-boilerplate/_sass/_bootstrap-mincer.scss +19 -0
- data/bootstrap-boilerplate/_sass/_bootstrap-sprockets.scss +9 -0
- data/bootstrap-boilerplate/_sass/_bootstrap.scss +56 -0
- data/bootstrap-boilerplate/_sass/_my_variables.scss +874 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_alerts.scss +73 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_badges.scss +68 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_breadcrumbs.scss +26 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_button-groups.scss +244 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_buttons.scss +168 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_carousel.scss +269 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_close.scss +36 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_code.scss +69 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_component-animations.scss +37 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_dropdowns.scss +216 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_forms.scss +611 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_glyphicons.scss +307 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_grid.scss +84 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_input-groups.scss +167 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_jumbotron.scss +52 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_labels.scss +66 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_list-group.scss +130 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_media.scss +66 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_mixins.scss +40 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_modals.scss +150 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_navbar.scss +662 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_navs.scss +242 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_normalize.scss +424 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_pager.scss +54 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_pagination.scss +89 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_panels.scss +271 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_popovers.scss +131 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_print.scss +101 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_progress-bars.scss +87 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_responsive-embed.scss +35 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_responsive-utilities.scss +179 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_scaffolding.scss +161 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_tables.scss +234 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_theme.scss +291 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_thumbnails.scss +38 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_tooltip.scss +101 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_type.scss +298 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_utilities.scss +55 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_variables.scss +872 -0
- data/bootstrap-boilerplate/_sass/bootstrap/_wells.scss +29 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_alerts.scss +14 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_background-variant.scss +12 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_border-radius.scss +18 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_buttons.scss +68 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_center-block.scss +7 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_clearfix.scss +22 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_forms.scss +88 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_gradients.scss +58 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_grid.scss +122 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_hide-text.scss +21 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_image.scss +33 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_labels.scss +12 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_list-group.scss +32 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_opacity.scss +8 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_pagination.scss +24 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_panels.scss +24 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_progress-bar.scss +10 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_reset-filter.scss +8 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_reset-text.scss +18 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_size.scss +10 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_tab-focus.scss +9 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_table-row.scss +28 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_text-emphasis.scss +12 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_text-overflow.scss +8 -0
- data/bootstrap-boilerplate/_sass/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/bootstrap-boilerplate/_sass/main.scss +20 -0
- data/bootstrap-boilerplate/about/index.md +24 -0
- data/bootstrap-boilerplate/apple-touch-icon.png +0 -0
- data/bootstrap-boilerplate/browserconfig.xml +12 -0
- data/bootstrap-boilerplate/crossdomain.xml +14 -0
- data/bootstrap-boilerplate/favicon.ico +0 -0
- data/bootstrap-boilerplate/fonts/glyphicons-halflings-regular.eot +0 -0
- data/bootstrap-boilerplate/fonts/glyphicons-halflings-regular.svg +229 -0
- data/bootstrap-boilerplate/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/bootstrap-boilerplate/fonts/glyphicons-halflings-regular.woff +0 -0
- data/bootstrap-boilerplate/humans.txt.tt +18 -0
- data/bootstrap-boilerplate/index.html +18 -0
- data/bootstrap-boilerplate/js/main.js +1 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/affix.js +162 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/alert.js +94 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/button.js +120 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/carousel.js +237 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/collapse.js +211 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/dropdown.js +165 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/modal.js +337 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/popover.js +108 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/scrollspy.js +172 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/tab.js +155 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/tooltip.js +514 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap/transition.js +59 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap-sprockets.js +12 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap.js +2363 -0
- data/bootstrap-boilerplate/js/vendor/bootstrap.min.js +7 -0
- data/bootstrap-boilerplate/js/vendor/jquery-1.11.2.js +10346 -0
- data/bootstrap-boilerplate/js/vendor/jquery-1.11.2.min.js +4 -0
- data/bootstrap-boilerplate/js/vendor/modernizr-2.8.3-respond-1.4.2.min.js +11 -0
- data/bootstrap-boilerplate/js/vendor/npm.js +13 -0
- data/bootstrap-boilerplate/robots.txt +5 -0
- data/bootstrap-boilerplate/tile-wide.png +0 -0
- data/bootstrap-boilerplate/tile.png +0 -0
- data/drink_up_doctor.gemspec +29 -0
- data/exe/drink_up_doctor +4 -0
- data/lib/drink_up_doctor/new_site.rb +178 -0
- data/lib/drink_up_doctor/new_twbs_site.rb +124 -0
- data/lib/drink_up_doctor/version.rb +3 -0
- data/lib/drink_up_doctor.rb +12 -0
- data/templates/Gemfile +11 -0
- data/templates/README.md.erb +81 -0
- data/templates/bower.json.erb +17 -0
- data/templates/gulpfile.js.erb +84 -0
- data/templates/main.scss +46 -0
- data/templates/package.json.erb +20 -0
- data/templates/setup.sh +2 -0
- data/templates/site_gitignore +7 -0
- metadata +285 -0
@@ -0,0 +1,120 @@
|
|
1
|
+
/* ========================================================================
|
2
|
+
* Bootstrap: button.js v3.3.5
|
3
|
+
* http://getbootstrap.com/javascript/#buttons
|
4
|
+
* ========================================================================
|
5
|
+
* Copyright 2011-2015 Twitter, Inc.
|
6
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
7
|
+
* ======================================================================== */
|
8
|
+
|
9
|
+
|
10
|
+
+function ($) {
|
11
|
+
'use strict';
|
12
|
+
|
13
|
+
// BUTTON PUBLIC CLASS DEFINITION
|
14
|
+
// ==============================
|
15
|
+
|
16
|
+
var Button = function (element, options) {
|
17
|
+
this.$element = $(element)
|
18
|
+
this.options = $.extend({}, Button.DEFAULTS, options)
|
19
|
+
this.isLoading = false
|
20
|
+
}
|
21
|
+
|
22
|
+
Button.VERSION = '3.3.5'
|
23
|
+
|
24
|
+
Button.DEFAULTS = {
|
25
|
+
loadingText: 'loading...'
|
26
|
+
}
|
27
|
+
|
28
|
+
Button.prototype.setState = function (state) {
|
29
|
+
var d = 'disabled'
|
30
|
+
var $el = this.$element
|
31
|
+
var val = $el.is('input') ? 'val' : 'html'
|
32
|
+
var data = $el.data()
|
33
|
+
|
34
|
+
state += 'Text'
|
35
|
+
|
36
|
+
if (data.resetText == null) $el.data('resetText', $el[val]())
|
37
|
+
|
38
|
+
// push to event loop to allow forms to submit
|
39
|
+
setTimeout($.proxy(function () {
|
40
|
+
$el[val](data[state] == null ? this.options[state] : data[state])
|
41
|
+
|
42
|
+
if (state == 'loadingText') {
|
43
|
+
this.isLoading = true
|
44
|
+
$el.addClass(d).attr(d, d)
|
45
|
+
} else if (this.isLoading) {
|
46
|
+
this.isLoading = false
|
47
|
+
$el.removeClass(d).removeAttr(d)
|
48
|
+
}
|
49
|
+
}, this), 0)
|
50
|
+
}
|
51
|
+
|
52
|
+
Button.prototype.toggle = function () {
|
53
|
+
var changed = true
|
54
|
+
var $parent = this.$element.closest('[data-toggle="buttons"]')
|
55
|
+
|
56
|
+
if ($parent.length) {
|
57
|
+
var $input = this.$element.find('input')
|
58
|
+
if ($input.prop('type') == 'radio') {
|
59
|
+
if ($input.prop('checked')) changed = false
|
60
|
+
$parent.find('.active').removeClass('active')
|
61
|
+
this.$element.addClass('active')
|
62
|
+
} else if ($input.prop('type') == 'checkbox') {
|
63
|
+
if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false
|
64
|
+
this.$element.toggleClass('active')
|
65
|
+
}
|
66
|
+
$input.prop('checked', this.$element.hasClass('active'))
|
67
|
+
if (changed) $input.trigger('change')
|
68
|
+
} else {
|
69
|
+
this.$element.attr('aria-pressed', !this.$element.hasClass('active'))
|
70
|
+
this.$element.toggleClass('active')
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
|
75
|
+
// BUTTON PLUGIN DEFINITION
|
76
|
+
// ========================
|
77
|
+
|
78
|
+
function Plugin(option) {
|
79
|
+
return this.each(function () {
|
80
|
+
var $this = $(this)
|
81
|
+
var data = $this.data('bs.button')
|
82
|
+
var options = typeof option == 'object' && option
|
83
|
+
|
84
|
+
if (!data) $this.data('bs.button', (data = new Button(this, options)))
|
85
|
+
|
86
|
+
if (option == 'toggle') data.toggle()
|
87
|
+
else if (option) data.setState(option)
|
88
|
+
})
|
89
|
+
}
|
90
|
+
|
91
|
+
var old = $.fn.button
|
92
|
+
|
93
|
+
$.fn.button = Plugin
|
94
|
+
$.fn.button.Constructor = Button
|
95
|
+
|
96
|
+
|
97
|
+
// BUTTON NO CONFLICT
|
98
|
+
// ==================
|
99
|
+
|
100
|
+
$.fn.button.noConflict = function () {
|
101
|
+
$.fn.button = old
|
102
|
+
return this
|
103
|
+
}
|
104
|
+
|
105
|
+
|
106
|
+
// BUTTON DATA-API
|
107
|
+
// ===============
|
108
|
+
|
109
|
+
$(document)
|
110
|
+
.on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) {
|
111
|
+
var $btn = $(e.target)
|
112
|
+
if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
|
113
|
+
Plugin.call($btn, 'toggle')
|
114
|
+
if (!($(e.target).is('input[type="radio"]') || $(e.target).is('input[type="checkbox"]'))) e.preventDefault()
|
115
|
+
})
|
116
|
+
.on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) {
|
117
|
+
$(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type))
|
118
|
+
})
|
119
|
+
|
120
|
+
}(jQuery);
|
@@ -0,0 +1,237 @@
|
|
1
|
+
/* ========================================================================
|
2
|
+
* Bootstrap: carousel.js v3.3.5
|
3
|
+
* http://getbootstrap.com/javascript/#carousel
|
4
|
+
* ========================================================================
|
5
|
+
* Copyright 2011-2015 Twitter, Inc.
|
6
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
7
|
+
* ======================================================================== */
|
8
|
+
|
9
|
+
|
10
|
+
+function ($) {
|
11
|
+
'use strict';
|
12
|
+
|
13
|
+
// CAROUSEL CLASS DEFINITION
|
14
|
+
// =========================
|
15
|
+
|
16
|
+
var Carousel = function (element, options) {
|
17
|
+
this.$element = $(element)
|
18
|
+
this.$indicators = this.$element.find('.carousel-indicators')
|
19
|
+
this.options = options
|
20
|
+
this.paused = null
|
21
|
+
this.sliding = null
|
22
|
+
this.interval = null
|
23
|
+
this.$active = null
|
24
|
+
this.$items = null
|
25
|
+
|
26
|
+
this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this))
|
27
|
+
|
28
|
+
this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element
|
29
|
+
.on('mouseenter.bs.carousel', $.proxy(this.pause, this))
|
30
|
+
.on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
|
31
|
+
}
|
32
|
+
|
33
|
+
Carousel.VERSION = '3.3.5'
|
34
|
+
|
35
|
+
Carousel.TRANSITION_DURATION = 600
|
36
|
+
|
37
|
+
Carousel.DEFAULTS = {
|
38
|
+
interval: 5000,
|
39
|
+
pause: 'hover',
|
40
|
+
wrap: true,
|
41
|
+
keyboard: true
|
42
|
+
}
|
43
|
+
|
44
|
+
Carousel.prototype.keydown = function (e) {
|
45
|
+
if (/input|textarea/i.test(e.target.tagName)) return
|
46
|
+
switch (e.which) {
|
47
|
+
case 37: this.prev(); break
|
48
|
+
case 39: this.next(); break
|
49
|
+
default: return
|
50
|
+
}
|
51
|
+
|
52
|
+
e.preventDefault()
|
53
|
+
}
|
54
|
+
|
55
|
+
Carousel.prototype.cycle = function (e) {
|
56
|
+
e || (this.paused = false)
|
57
|
+
|
58
|
+
this.interval && clearInterval(this.interval)
|
59
|
+
|
60
|
+
this.options.interval
|
61
|
+
&& !this.paused
|
62
|
+
&& (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
|
63
|
+
|
64
|
+
return this
|
65
|
+
}
|
66
|
+
|
67
|
+
Carousel.prototype.getItemIndex = function (item) {
|
68
|
+
this.$items = item.parent().children('.item')
|
69
|
+
return this.$items.index(item || this.$active)
|
70
|
+
}
|
71
|
+
|
72
|
+
Carousel.prototype.getItemForDirection = function (direction, active) {
|
73
|
+
var activeIndex = this.getItemIndex(active)
|
74
|
+
var willWrap = (direction == 'prev' && activeIndex === 0)
|
75
|
+
|| (direction == 'next' && activeIndex == (this.$items.length - 1))
|
76
|
+
if (willWrap && !this.options.wrap) return active
|
77
|
+
var delta = direction == 'prev' ? -1 : 1
|
78
|
+
var itemIndex = (activeIndex + delta) % this.$items.length
|
79
|
+
return this.$items.eq(itemIndex)
|
80
|
+
}
|
81
|
+
|
82
|
+
Carousel.prototype.to = function (pos) {
|
83
|
+
var that = this
|
84
|
+
var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))
|
85
|
+
|
86
|
+
if (pos > (this.$items.length - 1) || pos < 0) return
|
87
|
+
|
88
|
+
if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid"
|
89
|
+
if (activeIndex == pos) return this.pause().cycle()
|
90
|
+
|
91
|
+
return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))
|
92
|
+
}
|
93
|
+
|
94
|
+
Carousel.prototype.pause = function (e) {
|
95
|
+
e || (this.paused = true)
|
96
|
+
|
97
|
+
if (this.$element.find('.next, .prev').length && $.support.transition) {
|
98
|
+
this.$element.trigger($.support.transition.end)
|
99
|
+
this.cycle(true)
|
100
|
+
}
|
101
|
+
|
102
|
+
this.interval = clearInterval(this.interval)
|
103
|
+
|
104
|
+
return this
|
105
|
+
}
|
106
|
+
|
107
|
+
Carousel.prototype.next = function () {
|
108
|
+
if (this.sliding) return
|
109
|
+
return this.slide('next')
|
110
|
+
}
|
111
|
+
|
112
|
+
Carousel.prototype.prev = function () {
|
113
|
+
if (this.sliding) return
|
114
|
+
return this.slide('prev')
|
115
|
+
}
|
116
|
+
|
117
|
+
Carousel.prototype.slide = function (type, next) {
|
118
|
+
var $active = this.$element.find('.item.active')
|
119
|
+
var $next = next || this.getItemForDirection(type, $active)
|
120
|
+
var isCycling = this.interval
|
121
|
+
var direction = type == 'next' ? 'left' : 'right'
|
122
|
+
var that = this
|
123
|
+
|
124
|
+
if ($next.hasClass('active')) return (this.sliding = false)
|
125
|
+
|
126
|
+
var relatedTarget = $next[0]
|
127
|
+
var slideEvent = $.Event('slide.bs.carousel', {
|
128
|
+
relatedTarget: relatedTarget,
|
129
|
+
direction: direction
|
130
|
+
})
|
131
|
+
this.$element.trigger(slideEvent)
|
132
|
+
if (slideEvent.isDefaultPrevented()) return
|
133
|
+
|
134
|
+
this.sliding = true
|
135
|
+
|
136
|
+
isCycling && this.pause()
|
137
|
+
|
138
|
+
if (this.$indicators.length) {
|
139
|
+
this.$indicators.find('.active').removeClass('active')
|
140
|
+
var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])
|
141
|
+
$nextIndicator && $nextIndicator.addClass('active')
|
142
|
+
}
|
143
|
+
|
144
|
+
var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid"
|
145
|
+
if ($.support.transition && this.$element.hasClass('slide')) {
|
146
|
+
$next.addClass(type)
|
147
|
+
$next[0].offsetWidth // force reflow
|
148
|
+
$active.addClass(direction)
|
149
|
+
$next.addClass(direction)
|
150
|
+
$active
|
151
|
+
.one('bsTransitionEnd', function () {
|
152
|
+
$next.removeClass([type, direction].join(' ')).addClass('active')
|
153
|
+
$active.removeClass(['active', direction].join(' '))
|
154
|
+
that.sliding = false
|
155
|
+
setTimeout(function () {
|
156
|
+
that.$element.trigger(slidEvent)
|
157
|
+
}, 0)
|
158
|
+
})
|
159
|
+
.emulateTransitionEnd(Carousel.TRANSITION_DURATION)
|
160
|
+
} else {
|
161
|
+
$active.removeClass('active')
|
162
|
+
$next.addClass('active')
|
163
|
+
this.sliding = false
|
164
|
+
this.$element.trigger(slidEvent)
|
165
|
+
}
|
166
|
+
|
167
|
+
isCycling && this.cycle()
|
168
|
+
|
169
|
+
return this
|
170
|
+
}
|
171
|
+
|
172
|
+
|
173
|
+
// CAROUSEL PLUGIN DEFINITION
|
174
|
+
// ==========================
|
175
|
+
|
176
|
+
function Plugin(option) {
|
177
|
+
return this.each(function () {
|
178
|
+
var $this = $(this)
|
179
|
+
var data = $this.data('bs.carousel')
|
180
|
+
var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
181
|
+
var action = typeof option == 'string' ? option : options.slide
|
182
|
+
|
183
|
+
if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
|
184
|
+
if (typeof option == 'number') data.to(option)
|
185
|
+
else if (action) data[action]()
|
186
|
+
else if (options.interval) data.pause().cycle()
|
187
|
+
})
|
188
|
+
}
|
189
|
+
|
190
|
+
var old = $.fn.carousel
|
191
|
+
|
192
|
+
$.fn.carousel = Plugin
|
193
|
+
$.fn.carousel.Constructor = Carousel
|
194
|
+
|
195
|
+
|
196
|
+
// CAROUSEL NO CONFLICT
|
197
|
+
// ====================
|
198
|
+
|
199
|
+
$.fn.carousel.noConflict = function () {
|
200
|
+
$.fn.carousel = old
|
201
|
+
return this
|
202
|
+
}
|
203
|
+
|
204
|
+
|
205
|
+
// CAROUSEL DATA-API
|
206
|
+
// =================
|
207
|
+
|
208
|
+
var clickHandler = function (e) {
|
209
|
+
var href
|
210
|
+
var $this = $(this)
|
211
|
+
var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
|
212
|
+
if (!$target.hasClass('carousel')) return
|
213
|
+
var options = $.extend({}, $target.data(), $this.data())
|
214
|
+
var slideIndex = $this.attr('data-slide-to')
|
215
|
+
if (slideIndex) options.interval = false
|
216
|
+
|
217
|
+
Plugin.call($target, options)
|
218
|
+
|
219
|
+
if (slideIndex) {
|
220
|
+
$target.data('bs.carousel').to(slideIndex)
|
221
|
+
}
|
222
|
+
|
223
|
+
e.preventDefault()
|
224
|
+
}
|
225
|
+
|
226
|
+
$(document)
|
227
|
+
.on('click.bs.carousel.data-api', '[data-slide]', clickHandler)
|
228
|
+
.on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)
|
229
|
+
|
230
|
+
$(window).on('load', function () {
|
231
|
+
$('[data-ride="carousel"]').each(function () {
|
232
|
+
var $carousel = $(this)
|
233
|
+
Plugin.call($carousel, $carousel.data())
|
234
|
+
})
|
235
|
+
})
|
236
|
+
|
237
|
+
}(jQuery);
|
@@ -0,0 +1,211 @@
|
|
1
|
+
/* ========================================================================
|
2
|
+
* Bootstrap: collapse.js v3.3.5
|
3
|
+
* http://getbootstrap.com/javascript/#collapse
|
4
|
+
* ========================================================================
|
5
|
+
* Copyright 2011-2015 Twitter, Inc.
|
6
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
7
|
+
* ======================================================================== */
|
8
|
+
|
9
|
+
|
10
|
+
+function ($) {
|
11
|
+
'use strict';
|
12
|
+
|
13
|
+
// COLLAPSE PUBLIC CLASS DEFINITION
|
14
|
+
// ================================
|
15
|
+
|
16
|
+
var Collapse = function (element, options) {
|
17
|
+
this.$element = $(element)
|
18
|
+
this.options = $.extend({}, Collapse.DEFAULTS, options)
|
19
|
+
this.$trigger = $('[data-toggle="collapse"][href="#' + element.id + '"],' +
|
20
|
+
'[data-toggle="collapse"][data-target="#' + element.id + '"]')
|
21
|
+
this.transitioning = null
|
22
|
+
|
23
|
+
if (this.options.parent) {
|
24
|
+
this.$parent = this.getParent()
|
25
|
+
} else {
|
26
|
+
this.addAriaAndCollapsedClass(this.$element, this.$trigger)
|
27
|
+
}
|
28
|
+
|
29
|
+
if (this.options.toggle) this.toggle()
|
30
|
+
}
|
31
|
+
|
32
|
+
Collapse.VERSION = '3.3.5'
|
33
|
+
|
34
|
+
Collapse.TRANSITION_DURATION = 350
|
35
|
+
|
36
|
+
Collapse.DEFAULTS = {
|
37
|
+
toggle: true
|
38
|
+
}
|
39
|
+
|
40
|
+
Collapse.prototype.dimension = function () {
|
41
|
+
var hasWidth = this.$element.hasClass('width')
|
42
|
+
return hasWidth ? 'width' : 'height'
|
43
|
+
}
|
44
|
+
|
45
|
+
Collapse.prototype.show = function () {
|
46
|
+
if (this.transitioning || this.$element.hasClass('in')) return
|
47
|
+
|
48
|
+
var activesData
|
49
|
+
var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing')
|
50
|
+
|
51
|
+
if (actives && actives.length) {
|
52
|
+
activesData = actives.data('bs.collapse')
|
53
|
+
if (activesData && activesData.transitioning) return
|
54
|
+
}
|
55
|
+
|
56
|
+
var startEvent = $.Event('show.bs.collapse')
|
57
|
+
this.$element.trigger(startEvent)
|
58
|
+
if (startEvent.isDefaultPrevented()) return
|
59
|
+
|
60
|
+
if (actives && actives.length) {
|
61
|
+
Plugin.call(actives, 'hide')
|
62
|
+
activesData || actives.data('bs.collapse', null)
|
63
|
+
}
|
64
|
+
|
65
|
+
var dimension = this.dimension()
|
66
|
+
|
67
|
+
this.$element
|
68
|
+
.removeClass('collapse')
|
69
|
+
.addClass('collapsing')[dimension](0)
|
70
|
+
.attr('aria-expanded', true)
|
71
|
+
|
72
|
+
this.$trigger
|
73
|
+
.removeClass('collapsed')
|
74
|
+
.attr('aria-expanded', true)
|
75
|
+
|
76
|
+
this.transitioning = 1
|
77
|
+
|
78
|
+
var complete = function () {
|
79
|
+
this.$element
|
80
|
+
.removeClass('collapsing')
|
81
|
+
.addClass('collapse in')[dimension]('')
|
82
|
+
this.transitioning = 0
|
83
|
+
this.$element
|
84
|
+
.trigger('shown.bs.collapse')
|
85
|
+
}
|
86
|
+
|
87
|
+
if (!$.support.transition) return complete.call(this)
|
88
|
+
|
89
|
+
var scrollSize = $.camelCase(['scroll', dimension].join('-'))
|
90
|
+
|
91
|
+
this.$element
|
92
|
+
.one('bsTransitionEnd', $.proxy(complete, this))
|
93
|
+
.emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])
|
94
|
+
}
|
95
|
+
|
96
|
+
Collapse.prototype.hide = function () {
|
97
|
+
if (this.transitioning || !this.$element.hasClass('in')) return
|
98
|
+
|
99
|
+
var startEvent = $.Event('hide.bs.collapse')
|
100
|
+
this.$element.trigger(startEvent)
|
101
|
+
if (startEvent.isDefaultPrevented()) return
|
102
|
+
|
103
|
+
var dimension = this.dimension()
|
104
|
+
|
105
|
+
this.$element[dimension](this.$element[dimension]())[0].offsetHeight
|
106
|
+
|
107
|
+
this.$element
|
108
|
+
.addClass('collapsing')
|
109
|
+
.removeClass('collapse in')
|
110
|
+
.attr('aria-expanded', false)
|
111
|
+
|
112
|
+
this.$trigger
|
113
|
+
.addClass('collapsed')
|
114
|
+
.attr('aria-expanded', false)
|
115
|
+
|
116
|
+
this.transitioning = 1
|
117
|
+
|
118
|
+
var complete = function () {
|
119
|
+
this.transitioning = 0
|
120
|
+
this.$element
|
121
|
+
.removeClass('collapsing')
|
122
|
+
.addClass('collapse')
|
123
|
+
.trigger('hidden.bs.collapse')
|
124
|
+
}
|
125
|
+
|
126
|
+
if (!$.support.transition) return complete.call(this)
|
127
|
+
|
128
|
+
this.$element
|
129
|
+
[dimension](0)
|
130
|
+
.one('bsTransitionEnd', $.proxy(complete, this))
|
131
|
+
.emulateTransitionEnd(Collapse.TRANSITION_DURATION)
|
132
|
+
}
|
133
|
+
|
134
|
+
Collapse.prototype.toggle = function () {
|
135
|
+
this[this.$element.hasClass('in') ? 'hide' : 'show']()
|
136
|
+
}
|
137
|
+
|
138
|
+
Collapse.prototype.getParent = function () {
|
139
|
+
return $(this.options.parent)
|
140
|
+
.find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]')
|
141
|
+
.each($.proxy(function (i, element) {
|
142
|
+
var $element = $(element)
|
143
|
+
this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element)
|
144
|
+
}, this))
|
145
|
+
.end()
|
146
|
+
}
|
147
|
+
|
148
|
+
Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) {
|
149
|
+
var isOpen = $element.hasClass('in')
|
150
|
+
|
151
|
+
$element.attr('aria-expanded', isOpen)
|
152
|
+
$trigger
|
153
|
+
.toggleClass('collapsed', !isOpen)
|
154
|
+
.attr('aria-expanded', isOpen)
|
155
|
+
}
|
156
|
+
|
157
|
+
function getTargetFromTrigger($trigger) {
|
158
|
+
var href
|
159
|
+
var target = $trigger.attr('data-target')
|
160
|
+
|| (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
|
161
|
+
|
162
|
+
return $(target)
|
163
|
+
}
|
164
|
+
|
165
|
+
|
166
|
+
// COLLAPSE PLUGIN DEFINITION
|
167
|
+
// ==========================
|
168
|
+
|
169
|
+
function Plugin(option) {
|
170
|
+
return this.each(function () {
|
171
|
+
var $this = $(this)
|
172
|
+
var data = $this.data('bs.collapse')
|
173
|
+
var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
174
|
+
|
175
|
+
if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false
|
176
|
+
if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
|
177
|
+
if (typeof option == 'string') data[option]()
|
178
|
+
})
|
179
|
+
}
|
180
|
+
|
181
|
+
var old = $.fn.collapse
|
182
|
+
|
183
|
+
$.fn.collapse = Plugin
|
184
|
+
$.fn.collapse.Constructor = Collapse
|
185
|
+
|
186
|
+
|
187
|
+
// COLLAPSE NO CONFLICT
|
188
|
+
// ====================
|
189
|
+
|
190
|
+
$.fn.collapse.noConflict = function () {
|
191
|
+
$.fn.collapse = old
|
192
|
+
return this
|
193
|
+
}
|
194
|
+
|
195
|
+
|
196
|
+
// COLLAPSE DATA-API
|
197
|
+
// =================
|
198
|
+
|
199
|
+
$(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) {
|
200
|
+
var $this = $(this)
|
201
|
+
|
202
|
+
if (!$this.attr('data-target')) e.preventDefault()
|
203
|
+
|
204
|
+
var $target = getTargetFromTrigger($this)
|
205
|
+
var data = $target.data('bs.collapse')
|
206
|
+
var option = data ? 'toggle' : $this.data()
|
207
|
+
|
208
|
+
Plugin.call($target, option)
|
209
|
+
})
|
210
|
+
|
211
|
+
}(jQuery);
|