rails_admin 3.0.0.beta2 → 3.0.0.rc
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of rails_admin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +1 -2
- data/Rakefile +11 -0
- data/app/assets/javascripts/rails_admin.js +4 -4
- data/app/assets/stylesheets/rails_admin.scss +31 -0
- data/app/controllers/rails_admin/application_controller.rb +1 -1
- data/app/controllers/rails_admin/main_controller.rb +10 -18
- data/app/helpers/rails_admin/application_helper.rb +12 -13
- data/app/helpers/rails_admin/form_builder.rb +3 -3
- data/app/helpers/rails_admin/main_helper.rb +1 -1
- data/app/views/kaminari/ra-twitter-bootstrap/_gap.html.erb +2 -2
- data/app/views/kaminari/ra-twitter-bootstrap/_next_page.html.erb +4 -4
- data/app/views/kaminari/ra-twitter-bootstrap/_page.html.erb +4 -4
- data/app/views/kaminari/ra-twitter-bootstrap/_paginator.html.erb +12 -10
- data/app/views/kaminari/ra-twitter-bootstrap/_prev_page.html.erb +4 -4
- data/app/views/kaminari/ra-twitter-bootstrap/without_count/_next_page.html.erb +4 -4
- data/app/views/kaminari/ra-twitter-bootstrap/without_count/_paginator.html.erb +6 -4
- data/app/views/kaminari/ra-twitter-bootstrap/without_count/_prev_page.html.erb +4 -4
- data/app/views/layouts/rails_admin/_navigation.html.erb +12 -16
- data/app/views/layouts/rails_admin/_secondary_navigation.html.erb +8 -8
- data/app/views/layouts/rails_admin/_sidebar_navigation.html.erb +1 -5
- data/app/views/layouts/rails_admin/application.html.erb +4 -7
- data/app/views/layouts/rails_admin/{pjax.html.erb → content.html.erb} +7 -5
- data/app/views/layouts/rails_admin/modal.js.erb +1 -1
- data/app/views/rails_admin/main/_dashboard_history.html.erb +1 -1
- data/app/views/rails_admin/main/_delete_notice.html.erb +2 -2
- data/app/views/rails_admin/main/_form_boolean.html.erb +6 -8
- data/app/views/rails_admin/main/_form_colorpicker.html.erb +5 -1
- data/app/views/rails_admin/main/_form_datetime.html.erb +8 -7
- data/app/views/rails_admin/main/_form_enumeration.html.erb +5 -1
- data/app/views/rails_admin/main/_form_file_upload.html.erb +1 -1
- data/app/views/rails_admin/main/_form_filtering_multiselect.html.erb +14 -14
- data/app/views/rails_admin/main/_form_filtering_select.html.erb +16 -21
- data/app/views/rails_admin/main/_form_multiple_file_upload.html.erb +1 -1
- data/app/views/rails_admin/main/_form_nested_many.html.erb +4 -4
- data/app/views/rails_admin/main/_form_nested_one.html.erb +4 -4
- data/app/views/rails_admin/main/_form_polymorphic_association.html.erb +11 -6
- data/app/views/rails_admin/main/_submit_buttons.html.erb +8 -8
- data/app/views/rails_admin/main/bulk_delete.html.erb +1 -1
- data/app/views/rails_admin/main/dashboard.html.erb +4 -4
- data/app/views/rails_admin/main/delete.html.erb +1 -1
- data/app/views/rails_admin/main/edit.html.erb +1 -1
- data/app/views/rails_admin/main/export.html.erb +35 -32
- data/app/views/rails_admin/main/history.html.erb +16 -14
- data/app/views/rails_admin/main/index.html.erb +38 -35
- data/app/views/rails_admin/main/new.html.erb +1 -1
- data/config/locales/rails_admin.en.yml +0 -1
- data/lib/generators/rails_admin/install_generator.rb +0 -1
- data/lib/generators/rails_admin/templates/webpack.config.js +0 -3
- data/lib/rails_admin/adapters/active_record/object_extension.rb +1 -1
- data/lib/rails_admin/adapters/active_record/property.rb +1 -1
- data/lib/rails_admin/adapters/active_record.rb +7 -3
- data/lib/rails_admin/adapters/mongoid/property.rb +3 -3
- data/lib/rails_admin/adapters/mongoid.rb +2 -2
- data/lib/rails_admin/config/actions/base.rb +1 -6
- data/lib/rails_admin/config/actions/dashboard.rb +13 -9
- data/lib/rails_admin/config/actions/delete.rb +4 -0
- data/lib/rails_admin/config/actions/edit.rb +4 -0
- data/lib/rails_admin/config/actions/new.rb +5 -0
- data/lib/rails_admin/config/actions/show_in_app.rb +0 -4
- data/lib/rails_admin/config/fields/association.rb +6 -1
- data/lib/rails_admin/config/fields/base.rb +1 -1
- data/lib/rails_admin/config/fields/types/action_text.rb +1 -1
- data/lib/rails_admin/config/fields/types/date.rb +7 -0
- data/lib/rails_admin/config/fields/types/datetime.rb +9 -4
- data/lib/rails_admin/config/fields/types/has_many_association.rb +4 -0
- data/lib/rails_admin/config/fields/types/has_one_association.rb +4 -0
- data/lib/rails_admin/config/fields/types/time.rb +9 -0
- data/lib/rails_admin/config/has_fields.rb +4 -0
- data/lib/rails_admin/config/model.rb +8 -0
- data/lib/rails_admin/config/sections/list.rb +4 -4
- data/lib/rails_admin/config.rb +4 -1
- data/lib/rails_admin/engine.rb +2 -5
- data/lib/rails_admin/support/datetime.rb +50 -53
- data/lib/rails_admin/support/esmodule_preprocessor.rb +2 -1
- data/lib/rails_admin/version.rb +1 -1
- data/package.json +7 -5
- data/src/rails_admin/base.js +3 -6
- data/src/rails_admin/filter-box.js +36 -37
- data/src/rails_admin/filtering-select.js +3 -6
- data/src/rails_admin/i18n.js +0 -3
- data/src/rails_admin/nested-form-hooks.js +16 -8
- data/src/rails_admin/remote-form.js +18 -15
- data/src/rails_admin/styles/base/theming.scss +80 -155
- data/src/rails_admin/styles/base/variables.scss +2 -0
- data/src/rails_admin/styles/base.scss +8 -45
- data/src/rails_admin/styles/filtering-multiselect.scss +2 -2
- data/src/rails_admin/styles/filtering-select.scss +1 -1
- data/src/rails_admin/styles/widgets.scss +1 -10
- data/src/rails_admin/ui.js +4 -54
- data/src/rails_admin/widgets.js +38 -48
- data/vendor/assets/javascripts/rails_admin/bootstrap.js +5046 -0
- data/vendor/assets/javascripts/rails_admin/flatpickr-with-locales.js +10683 -0
- data/vendor/assets/javascripts/rails_admin/popper.js +1974 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_accordion.scss +118 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_alert.scss +57 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_badge.scss +29 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_breadcrumb.scss +28 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_button-group.scss +139 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_buttons.scss +64 -110
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_card.scss +216 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_carousel.scss +162 -176
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_close.scss +31 -26
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_containers.scss +41 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_dropdown.scss +240 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_forms.scss +9 -538
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_functions.scss +302 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_grid.scss +18 -69
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_helpers.scss +9 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_images.scss +42 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_list-group.scss +127 -84
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_mixins.scss +26 -22
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_modal.scss +209 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_nav.scss +139 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_navbar.scss +218 -542
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_offcanvas.scss +83 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_pagination.scss +46 -70
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_placeholders.scss +51 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_popover.scss +158 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_progress.scss +48 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_reboot.scss +625 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_root.scss +54 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_spinners.scss +69 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_tables.scss +100 -178
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_toasts.scss +51 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_tooltip.scss +97 -77
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_transitions.scss +27 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_type.scss +54 -254
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_utilities.scss +628 -55
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_variables.scss +1572 -781
- data/vendor/assets/stylesheets/rails_admin/bootstrap/bootstrap.scss +38 -35
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_floating-labels.scss +63 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_form-check.scss +152 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_form-control.scss +219 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_form-range.scss +91 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_form-select.scss +72 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_form-text.scss +11 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_input-group.scss +121 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_labels.scss +36 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/forms/_validation.scss +12 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_clearfix.scss +3 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_colored-links.scss +12 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_position.scss +30 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_ratio.scss +26 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_stacks.scss +15 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_stretched-link.scss +15 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_text-truncation.scss +7 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_visually-hidden.scss +8 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/helpers/_vr.scss +8 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_alert.scss +11 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_backdrop.scss +14 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_border-radius.scss +72 -12
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_box-shadow.scss +18 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_breakpoints.scss +127 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_buttons.scss +113 -30
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_caret.scss +64 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_clearfix.scss +5 -18
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_color-scheme.scss +7 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_container.scss +9 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_deprecate.scss +10 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_forms.scss +130 -70
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_gradients.scss +27 -38
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_grid.scss +127 -98
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_image.scss +6 -24
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_list-group.scss +13 -20
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_lists.scss +7 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_pagination.scss +24 -16
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_reset-text.scss +17 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_resize.scss +1 -1
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_table-variants.scss +21 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/{_text-overflow.scss → _text-truncate.scss} +2 -2
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_transition.scss +26 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_utilities.scss +89 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_visually-hidden.scss +29 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/utilities/_api.scss +47 -0
- data/vendor/assets/stylesheets/rails_admin/bootstrap/vendor/_rfs.scss +354 -0
- data/vendor/assets/stylesheets/rails_admin/flatpickr.css +791 -0
- metadata +80 -91
- data/app/assets/stylesheets/rails_admin.scss.erb +0 -76
- data/lib/generators/rails_admin/templates/environment.js +0 -6
- data/src/rails_admin/styles/themes/cerulean/mixins.scss +0 -0
- data/src/rails_admin/styles/themes/cerulean/theming.scss +0 -135
- data/src/rails_admin/styles/themes/cerulean/variables.scss +0 -830
- data/src/rails_admin/styles/themes/default/mixins.scss +0 -8
- data/src/rails_admin/styles/themes/default/theming.scss +0 -11
- data/src/rails_admin/styles/themes/default/variables.scss +0 -12
- data/src/rails_admin/vendor/jquery.pjax.js +0 -899
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-affix.js +0 -164
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-alert.js +0 -95
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-button.js +0 -125
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-carousel.js +0 -246
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-collapse.js +0 -212
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-dropdown.js +0 -165
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-modal.js +0 -358
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-popover.js +0 -123
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-scrollspy.js +0 -172
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-tab.js +0 -155
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-tooltip.js +0 -677
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-transition.js +0 -59
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap-typeahead.js +0 -1782
- data/vendor/assets/javascripts/rails_admin/bootstrap/bootstrap.js +0 -13
- data/vendor/assets/javascripts/rails_admin/bootstrap-datetimepicker.js +0 -2611
- data/vendor/assets/javascripts/rails_admin/jquery.pjax.js +0 -898
- data/vendor/assets/javascripts/rails_admin/moment-with-locales.js +0 -18085
- data/vendor/assets/stylesheets/rails_admin/_bootstrap-datetimepicker.scss +0 -343
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_alerts.scss +0 -68
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_badges.scss +0 -57
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_breadcrumbs.scss +0 -26
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_button-groups.scss +0 -240
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_code.scss +0 -68
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_component-animations.scss +0 -35
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_dropdowns.scss +0 -215
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_glyphicons.scss +0 -237
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_input-groups.scss +0 -166
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_jumbotron.scss +0 -48
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_labels.scss +0 -66
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_media.scss +0 -56
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_modals.scss +0 -150
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_navs.scss +0 -242
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_normalize.scss +0 -425
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_pager.scss +0 -55
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_panels.scss +0 -243
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_popovers.scss +0 -133
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_print.scss +0 -101
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_progress-bars.scss +0 -105
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_responsive-embed.scss +0 -34
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_responsive-utilities.scss +0 -174
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_scaffolding.scss +0 -150
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_theme.scss +0 -258
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_thumbnails.scss +0 -38
- data/vendor/assets/stylesheets/rails_admin/bootstrap/_wells.scss +0 -29
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_alerts.scss +0 -14
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_background-variant.scss +0 -11
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_center-block.scss +0 -7
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_grid-framework.scss +0 -81
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_hide-text.scss +0 -21
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_labels.scss +0 -12
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_nav-divider.scss +0 -10
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_nav-vertical-align.scss +0 -9
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_opacity.scss +0 -8
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_panels.scss +0 -24
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_progress-bar.scss +0 -10
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_reset-filter.scss +0 -8
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_responsive-visibility.scss +0 -21
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_size.scss +0 -10
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_tab-focus.scss +0 -9
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_table-row.scss +0 -28
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_text-emphasis.scss +0 -11
- data/vendor/assets/stylesheets/rails_admin/bootstrap/mixins/_vendor-prefixes.scss +0 -219
- data/vendor/assets/stylesheets/rails_admin/bootstrap-datetimepicker-build.scss +0 -16
@@ -1,164 +0,0 @@
|
|
1
|
-
/* ========================================================================
|
2
|
-
* Bootstrap: affix.js v3.4.1
|
3
|
-
* https://getbootstrap.com/docs/3.4/javascript/#affix
|
4
|
-
* ========================================================================
|
5
|
-
* Copyright 2011-2019 Twitter, Inc.
|
6
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
7
|
-
* ======================================================================== */
|
8
|
-
|
9
|
-
|
10
|
-
+function ($) {
|
11
|
-
'use strict';
|
12
|
-
|
13
|
-
// AFFIX CLASS DEFINITION
|
14
|
-
// ======================
|
15
|
-
|
16
|
-
var Affix = function (element, options) {
|
17
|
-
this.options = $.extend({}, Affix.DEFAULTS, options)
|
18
|
-
|
19
|
-
var target = this.options.target === Affix.DEFAULTS.target ? $(this.options.target) : $(document).find(this.options.target)
|
20
|
-
|
21
|
-
this.$target = target
|
22
|
-
.on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
|
23
|
-
.on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this))
|
24
|
-
|
25
|
-
this.$element = $(element)
|
26
|
-
this.affixed = null
|
27
|
-
this.unpin = null
|
28
|
-
this.pinnedOffset = null
|
29
|
-
|
30
|
-
this.checkPosition()
|
31
|
-
}
|
32
|
-
|
33
|
-
Affix.VERSION = '3.4.1'
|
34
|
-
|
35
|
-
Affix.RESET = 'affix affix-top affix-bottom'
|
36
|
-
|
37
|
-
Affix.DEFAULTS = {
|
38
|
-
offset: 0,
|
39
|
-
target: window
|
40
|
-
}
|
41
|
-
|
42
|
-
Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) {
|
43
|
-
var scrollTop = this.$target.scrollTop()
|
44
|
-
var position = this.$element.offset()
|
45
|
-
var targetHeight = this.$target.height()
|
46
|
-
|
47
|
-
if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false
|
48
|
-
|
49
|
-
if (this.affixed == 'bottom') {
|
50
|
-
if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom'
|
51
|
-
return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom'
|
52
|
-
}
|
53
|
-
|
54
|
-
var initializing = this.affixed == null
|
55
|
-
var colliderTop = initializing ? scrollTop : position.top
|
56
|
-
var colliderHeight = initializing ? targetHeight : height
|
57
|
-
|
58
|
-
if (offsetTop != null && scrollTop <= offsetTop) return 'top'
|
59
|
-
if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom'
|
60
|
-
|
61
|
-
return false
|
62
|
-
}
|
63
|
-
|
64
|
-
Affix.prototype.getPinnedOffset = function () {
|
65
|
-
if (this.pinnedOffset) return this.pinnedOffset
|
66
|
-
this.$element.removeClass(Affix.RESET).addClass('affix')
|
67
|
-
var scrollTop = this.$target.scrollTop()
|
68
|
-
var position = this.$element.offset()
|
69
|
-
return (this.pinnedOffset = position.top - scrollTop)
|
70
|
-
}
|
71
|
-
|
72
|
-
Affix.prototype.checkPositionWithEventLoop = function () {
|
73
|
-
setTimeout($.proxy(this.checkPosition, this), 1)
|
74
|
-
}
|
75
|
-
|
76
|
-
Affix.prototype.checkPosition = function () {
|
77
|
-
if (!this.$element.is(':visible')) return
|
78
|
-
|
79
|
-
var height = this.$element.height()
|
80
|
-
var offset = this.options.offset
|
81
|
-
var offsetTop = offset.top
|
82
|
-
var offsetBottom = offset.bottom
|
83
|
-
var scrollHeight = Math.max($(document).height(), $(document.body).height())
|
84
|
-
|
85
|
-
if (typeof offset != 'object') offsetBottom = offsetTop = offset
|
86
|
-
if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element)
|
87
|
-
if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
|
88
|
-
|
89
|
-
var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom)
|
90
|
-
|
91
|
-
if (this.affixed != affix) {
|
92
|
-
if (this.unpin != null) this.$element.css('top', '')
|
93
|
-
|
94
|
-
var affixType = 'affix' + (affix ? '-' + affix : '')
|
95
|
-
var e = $.Event(affixType + '.bs.affix')
|
96
|
-
|
97
|
-
this.$element.trigger(e)
|
98
|
-
|
99
|
-
if (e.isDefaultPrevented()) return
|
100
|
-
|
101
|
-
this.affixed = affix
|
102
|
-
this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
|
103
|
-
|
104
|
-
this.$element
|
105
|
-
.removeClass(Affix.RESET)
|
106
|
-
.addClass(affixType)
|
107
|
-
.trigger(affixType.replace('affix', 'affixed') + '.bs.affix')
|
108
|
-
}
|
109
|
-
|
110
|
-
if (affix == 'bottom') {
|
111
|
-
this.$element.offset({
|
112
|
-
top: scrollHeight - height - offsetBottom
|
113
|
-
})
|
114
|
-
}
|
115
|
-
}
|
116
|
-
|
117
|
-
|
118
|
-
// AFFIX PLUGIN DEFINITION
|
119
|
-
// =======================
|
120
|
-
|
121
|
-
function Plugin(option) {
|
122
|
-
return this.each(function () {
|
123
|
-
var $this = $(this)
|
124
|
-
var data = $this.data('bs.affix')
|
125
|
-
var options = typeof option == 'object' && option
|
126
|
-
|
127
|
-
if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
|
128
|
-
if (typeof option == 'string') data[option]()
|
129
|
-
})
|
130
|
-
}
|
131
|
-
|
132
|
-
var old = $.fn.affix
|
133
|
-
|
134
|
-
$.fn.affix = Plugin
|
135
|
-
$.fn.affix.Constructor = Affix
|
136
|
-
|
137
|
-
|
138
|
-
// AFFIX NO CONFLICT
|
139
|
-
// =================
|
140
|
-
|
141
|
-
$.fn.affix.noConflict = function () {
|
142
|
-
$.fn.affix = old
|
143
|
-
return this
|
144
|
-
}
|
145
|
-
|
146
|
-
|
147
|
-
// AFFIX DATA-API
|
148
|
-
// ==============
|
149
|
-
|
150
|
-
$(window).on('load', function () {
|
151
|
-
$('[data-spy="affix"]').each(function () {
|
152
|
-
var $spy = $(this)
|
153
|
-
var data = $spy.data()
|
154
|
-
|
155
|
-
data.offset = data.offset || {}
|
156
|
-
|
157
|
-
if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom
|
158
|
-
if (data.offsetTop != null) data.offset.top = data.offsetTop
|
159
|
-
|
160
|
-
Plugin.call($spy, data)
|
161
|
-
})
|
162
|
-
})
|
163
|
-
|
164
|
-
}(jQuery);
|
@@ -1,95 +0,0 @@
|
|
1
|
-
/* ========================================================================
|
2
|
-
* Bootstrap: alert.js v3.4.1
|
3
|
-
* https://getbootstrap.com/docs/3.4/javascript/#alerts
|
4
|
-
* ========================================================================
|
5
|
-
* Copyright 2011-2019 Twitter, Inc.
|
6
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
7
|
-
* ======================================================================== */
|
8
|
-
|
9
|
-
|
10
|
-
+function ($) {
|
11
|
-
'use strict';
|
12
|
-
|
13
|
-
// ALERT CLASS DEFINITION
|
14
|
-
// ======================
|
15
|
-
|
16
|
-
var dismiss = '[data-dismiss="alert"]'
|
17
|
-
var Alert = function (el) {
|
18
|
-
$(el).on('click', dismiss, this.close)
|
19
|
-
}
|
20
|
-
|
21
|
-
Alert.VERSION = '3.4.1'
|
22
|
-
|
23
|
-
Alert.TRANSITION_DURATION = 150
|
24
|
-
|
25
|
-
Alert.prototype.close = function (e) {
|
26
|
-
var $this = $(this)
|
27
|
-
var selector = $this.attr('data-target')
|
28
|
-
|
29
|
-
if (!selector) {
|
30
|
-
selector = $this.attr('href')
|
31
|
-
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
32
|
-
}
|
33
|
-
|
34
|
-
selector = selector === '#' ? [] : selector
|
35
|
-
var $parent = $(document).find(selector)
|
36
|
-
|
37
|
-
if (e) e.preventDefault()
|
38
|
-
|
39
|
-
if (!$parent.length) {
|
40
|
-
$parent = $this.closest('.alert')
|
41
|
-
}
|
42
|
-
|
43
|
-
$parent.trigger(e = $.Event('close.bs.alert'))
|
44
|
-
|
45
|
-
if (e.isDefaultPrevented()) return
|
46
|
-
|
47
|
-
$parent.removeClass('in')
|
48
|
-
|
49
|
-
function removeElement() {
|
50
|
-
// detach from parent, fire event then clean up data
|
51
|
-
$parent.detach().trigger('closed.bs.alert').remove()
|
52
|
-
}
|
53
|
-
|
54
|
-
$.support.transition && $parent.hasClass('fade') ?
|
55
|
-
$parent
|
56
|
-
.one('bsTransitionEnd', removeElement)
|
57
|
-
.emulateTransitionEnd(Alert.TRANSITION_DURATION) :
|
58
|
-
removeElement()
|
59
|
-
}
|
60
|
-
|
61
|
-
|
62
|
-
// ALERT PLUGIN DEFINITION
|
63
|
-
// =======================
|
64
|
-
|
65
|
-
function Plugin(option) {
|
66
|
-
return this.each(function () {
|
67
|
-
var $this = $(this)
|
68
|
-
var data = $this.data('bs.alert')
|
69
|
-
|
70
|
-
if (!data) $this.data('bs.alert', (data = new Alert(this)))
|
71
|
-
if (typeof option == 'string') data[option].call($this)
|
72
|
-
})
|
73
|
-
}
|
74
|
-
|
75
|
-
var old = $.fn.alert
|
76
|
-
|
77
|
-
$.fn.alert = Plugin
|
78
|
-
$.fn.alert.Constructor = Alert
|
79
|
-
|
80
|
-
|
81
|
-
// ALERT NO CONFLICT
|
82
|
-
// =================
|
83
|
-
|
84
|
-
$.fn.alert.noConflict = function () {
|
85
|
-
$.fn.alert = old
|
86
|
-
return this
|
87
|
-
}
|
88
|
-
|
89
|
-
|
90
|
-
// ALERT DATA-API
|
91
|
-
// ==============
|
92
|
-
|
93
|
-
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
|
94
|
-
|
95
|
-
}(jQuery);
|
@@ -1,125 +0,0 @@
|
|
1
|
-
/* ========================================================================
|
2
|
-
* Bootstrap: button.js v3.4.1
|
3
|
-
* https://getbootstrap.com/docs/3.4/javascript/#buttons
|
4
|
-
* ========================================================================
|
5
|
-
* Copyright 2011-2019 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.4.1'
|
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).prop(d, true)
|
45
|
-
} else if (this.isLoading) {
|
46
|
-
this.isLoading = false
|
47
|
-
$el.removeClass(d).removeAttr(d).prop(d, false)
|
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).closest('.btn')
|
112
|
-
Plugin.call($btn, 'toggle')
|
113
|
-
if (!($(e.target).is('input[type="radio"], input[type="checkbox"]'))) {
|
114
|
-
// Prevent double click on radios, and the double selections (so cancellation) on checkboxes
|
115
|
-
e.preventDefault()
|
116
|
-
// The target component still receive the focus
|
117
|
-
if ($btn.is('input,button')) $btn.trigger('focus')
|
118
|
-
else $btn.find('input:visible,button:visible').first().trigger('focus')
|
119
|
-
}
|
120
|
-
})
|
121
|
-
.on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) {
|
122
|
-
$(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type))
|
123
|
-
})
|
124
|
-
|
125
|
-
}(jQuery);
|
@@ -1,246 +0,0 @@
|
|
1
|
-
/* ========================================================================
|
2
|
-
* Bootstrap: carousel.js v3.4.1
|
3
|
-
* https://getbootstrap.com/docs/3.4/javascript/#carousel
|
4
|
-
* ========================================================================
|
5
|
-
* Copyright 2011-2019 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.4.1'
|
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
|
-
if (typeof $next === 'object' && $next.length) {
|
148
|
-
$next[0].offsetWidth // force reflow
|
149
|
-
}
|
150
|
-
$active.addClass(direction)
|
151
|
-
$next.addClass(direction)
|
152
|
-
$active
|
153
|
-
.one('bsTransitionEnd', function () {
|
154
|
-
$next.removeClass([type, direction].join(' ')).addClass('active')
|
155
|
-
$active.removeClass(['active', direction].join(' '))
|
156
|
-
that.sliding = false
|
157
|
-
setTimeout(function () {
|
158
|
-
that.$element.trigger(slidEvent)
|
159
|
-
}, 0)
|
160
|
-
})
|
161
|
-
.emulateTransitionEnd(Carousel.TRANSITION_DURATION)
|
162
|
-
} else {
|
163
|
-
$active.removeClass('active')
|
164
|
-
$next.addClass('active')
|
165
|
-
this.sliding = false
|
166
|
-
this.$element.trigger(slidEvent)
|
167
|
-
}
|
168
|
-
|
169
|
-
isCycling && this.cycle()
|
170
|
-
|
171
|
-
return this
|
172
|
-
}
|
173
|
-
|
174
|
-
|
175
|
-
// CAROUSEL PLUGIN DEFINITION
|
176
|
-
// ==========================
|
177
|
-
|
178
|
-
function Plugin(option) {
|
179
|
-
return this.each(function () {
|
180
|
-
var $this = $(this)
|
181
|
-
var data = $this.data('bs.carousel')
|
182
|
-
var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
183
|
-
var action = typeof option == 'string' ? option : options.slide
|
184
|
-
|
185
|
-
if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
|
186
|
-
if (typeof option == 'number') data.to(option)
|
187
|
-
else if (action) data[action]()
|
188
|
-
else if (options.interval) data.pause().cycle()
|
189
|
-
})
|
190
|
-
}
|
191
|
-
|
192
|
-
var old = $.fn.carousel
|
193
|
-
|
194
|
-
$.fn.carousel = Plugin
|
195
|
-
$.fn.carousel.Constructor = Carousel
|
196
|
-
|
197
|
-
|
198
|
-
// CAROUSEL NO CONFLICT
|
199
|
-
// ====================
|
200
|
-
|
201
|
-
$.fn.carousel.noConflict = function () {
|
202
|
-
$.fn.carousel = old
|
203
|
-
return this
|
204
|
-
}
|
205
|
-
|
206
|
-
|
207
|
-
// CAROUSEL DATA-API
|
208
|
-
// =================
|
209
|
-
|
210
|
-
var clickHandler = function (e) {
|
211
|
-
var $this = $(this)
|
212
|
-
var href = $this.attr('href')
|
213
|
-
if (href) {
|
214
|
-
href = href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
|
215
|
-
}
|
216
|
-
|
217
|
-
var target = $this.attr('data-target') || href
|
218
|
-
var $target = $(document).find(target)
|
219
|
-
|
220
|
-
if (!$target.hasClass('carousel')) return
|
221
|
-
|
222
|
-
var options = $.extend({}, $target.data(), $this.data())
|
223
|
-
var slideIndex = $this.attr('data-slide-to')
|
224
|
-
if (slideIndex) options.interval = false
|
225
|
-
|
226
|
-
Plugin.call($target, options)
|
227
|
-
|
228
|
-
if (slideIndex) {
|
229
|
-
$target.data('bs.carousel').to(slideIndex)
|
230
|
-
}
|
231
|
-
|
232
|
-
e.preventDefault()
|
233
|
-
}
|
234
|
-
|
235
|
-
$(document)
|
236
|
-
.on('click.bs.carousel.data-api', '[data-slide]', clickHandler)
|
237
|
-
.on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)
|
238
|
-
|
239
|
-
$(window).on('load', function () {
|
240
|
-
$('[data-ride="carousel"]').each(function () {
|
241
|
-
var $carousel = $(this)
|
242
|
-
Plugin.call($carousel, $carousel.data())
|
243
|
-
})
|
244
|
-
})
|
245
|
-
|
246
|
-
}(jQuery);
|