bootstrap-generators 2.3.2 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +12 -2
- data/{LICENSE.txt → MIT-LICENSE} +1 -3
- data/README.md +19 -64
- data/Rakefile +24 -22
- data/bootstrap-generators.gemspec +3 -1
- data/lib/bootstrap-generators.rb +12 -1
- data/lib/bootstrap/generators/version.rb +1 -1
- data/lib/generators/bootstrap/install/install_generator.rb +9 -24
- data/lib/generators/bootstrap/install/templates/assets/stylesheets/bootstrap-variables.less +498 -179
- data/lib/generators/bootstrap/install/templates/assets/stylesheets/bootstrap-variables.scss +620 -0
- data/lib/generators/bootstrap/install/templates/assets/stylesheets/{fluid.css → starter.css} +6 -6
- data/lib/generators/bootstrap/install/templates/assets/stylesheets/{fluid.css.less → starter.less} +7 -7
- data/lib/generators/bootstrap/install/templates/assets/stylesheets/{fluid.css.scss → starter.scss} +7 -8
- data/lib/generators/bootstrap/install/templates/form_builders/form_builder/_form.html.erb +11 -9
- data/lib/generators/bootstrap/install/templates/form_builders/form_builder/_form.html.haml +9 -8
- data/lib/generators/bootstrap/install/templates/layouts/starter.html.erb +50 -0
- data/lib/generators/bootstrap/install/templates/layouts/{hero.html.haml → starter.html.haml} +0 -0
- data/lib/generators/bootstrap/install/templates/lib/templates/erb/scaffold/edit.html.erb +3 -3
- data/lib/generators/bootstrap/install/templates/lib/templates/erb/scaffold/index.html.erb +25 -25
- data/lib/generators/bootstrap/install/templates/lib/templates/erb/scaffold/new.html.erb +2 -2
- data/lib/generators/bootstrap/install/templates/lib/templates/erb/scaffold/show.html.erb +5 -5
- data/lib/generators/bootstrap/install/templates/lib/templates/haml/scaffold/edit.html.haml +3 -3
- data/lib/generators/bootstrap/install/templates/lib/templates/haml/scaffold/index.html.haml +20 -19
- data/lib/generators/bootstrap/install/templates/lib/templates/haml/scaffold/new.html.haml +2 -2
- data/lib/generators/bootstrap/install/templates/lib/templates/haml/scaffold/show.html.haml +5 -5
- data/readme-template.md.erb +5 -48
- data/test/lib/generators/bootstrap/install_generator_test.rb +3 -33
- data/vendor/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/vendor/assets/fonts/glyphicons-halflings-regular.svg +228 -0
- data/vendor/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/vendor/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/vendor/assets/javascripts/bootstrap-ie.js +2 -0
- data/vendor/assets/javascripts/bootstrap-ie/html5shiv.js +8 -0
- data/vendor/assets/javascripts/bootstrap-ie/respond.min.js +6 -0
- data/vendor/assets/javascripts/bootstrap.js +12 -13
- data/vendor/assets/javascripts/bootstrap/affix.js +126 -0
- data/vendor/assets/javascripts/{bootstrap-alert.js → bootstrap/alert.js} +35 -36
- data/vendor/assets/javascripts/bootstrap/button.js +109 -0
- data/vendor/assets/javascripts/bootstrap/carousel.js +217 -0
- data/vendor/assets/javascripts/bootstrap/collapse.js +179 -0
- data/vendor/assets/javascripts/bootstrap/dropdown.js +154 -0
- data/vendor/assets/javascripts/bootstrap/modal.js +246 -0
- data/vendor/assets/javascripts/bootstrap/popover.js +117 -0
- data/vendor/assets/javascripts/bootstrap/scrollspy.js +158 -0
- data/vendor/assets/javascripts/bootstrap/tab.js +135 -0
- data/vendor/assets/javascripts/bootstrap/tooltip.js +386 -0
- data/vendor/assets/javascripts/bootstrap/transition.js +56 -0
- data/vendor/assets/stylesheets/bootstrap.css +4638 -4000
- data/vendor/twitter/bootstrap/less/alerts.less +46 -58
- data/vendor/twitter/bootstrap/less/badges.less +51 -0
- data/vendor/twitter/bootstrap/less/bootstrap.less +27 -31
- data/vendor/twitter/bootstrap/less/breadcrumbs.less +7 -8
- data/vendor/twitter/bootstrap/less/button-groups.less +173 -154
- data/vendor/twitter/bootstrap/less/buttons.less +97 -165
- data/vendor/twitter/bootstrap/less/carousel.less +115 -64
- data/vendor/twitter/bootstrap/less/close.less +20 -19
- data/vendor/twitter/bootstrap/less/code.less +17 -22
- data/vendor/twitter/bootstrap/less/component-animations.less +10 -3
- data/vendor/twitter/bootstrap/less/dropdowns.less +92 -147
- data/vendor/twitter/bootstrap/less/forms.less +224 -561
- data/vendor/twitter/bootstrap/less/glyphicons.less +232 -0
- data/vendor/twitter/bootstrap/less/grid.less +336 -11
- data/vendor/twitter/bootstrap/less/input-groups.less +127 -0
- data/vendor/twitter/bootstrap/less/jumbotron.less +40 -0
- data/vendor/twitter/bootstrap/less/labels.less +58 -0
- data/vendor/twitter/bootstrap/less/list-group.less +88 -0
- data/vendor/twitter/bootstrap/less/media.less +8 -7
- data/vendor/twitter/bootstrap/less/mixins.less +487 -466
- data/vendor/twitter/bootstrap/less/modals.less +98 -52
- data/vendor/twitter/bootstrap/less/navbar.less +507 -383
- data/vendor/twitter/bootstrap/less/navs.less +169 -349
- data/vendor/twitter/bootstrap/less/normalize.less +396 -0
- data/vendor/twitter/bootstrap/less/pager.less +45 -33
- data/vendor/twitter/bootstrap/less/pagination.less +65 -105
- data/vendor/twitter/bootstrap/less/panels.less +148 -0
- data/vendor/twitter/bootstrap/less/popovers.less +51 -51
- data/vendor/twitter/bootstrap/less/print.less +100 -0
- data/vendor/twitter/bootstrap/less/progress-bars.less +28 -55
- data/vendor/twitter/bootstrap/less/responsive-utilities.less +195 -34
- data/vendor/twitter/bootstrap/less/scaffolding.less +101 -24
- data/vendor/twitter/bootstrap/less/tables.less +170 -178
- data/vendor/twitter/bootstrap/less/theme.less +232 -0
- data/vendor/twitter/bootstrap/less/thumbnails.less +11 -33
- data/vendor/twitter/bootstrap/less/tooltip.less +45 -20
- data/vendor/twitter/bootstrap/less/type.less +100 -109
- data/vendor/twitter/bootstrap/less/utilities.less +19 -7
- data/vendor/twitter/bootstrap/less/variables.less +498 -179
- data/vendor/twitter/bootstrap/less/wells.less +7 -7
- data/vendor/twitter/bootstrap/sass/_alerts.scss +46 -58
- data/vendor/twitter/bootstrap/sass/_badges.scss +51 -0
- data/vendor/twitter/bootstrap/sass/_breadcrumbs.scss +8 -9
- data/vendor/twitter/bootstrap/sass/_button-groups.scss +173 -154
- data/vendor/twitter/bootstrap/sass/_buttons.scss +97 -165
- data/vendor/twitter/bootstrap/sass/_carousel.scss +116 -65
- data/vendor/twitter/bootstrap/sass/_close.scss +9 -8
- data/vendor/twitter/bootstrap/sass/_code.scss +16 -21
- data/vendor/twitter/bootstrap/sass/_component-animations.scss +10 -3
- data/vendor/twitter/bootstrap/sass/_dropdowns.scss +94 -148
- data/vendor/twitter/bootstrap/sass/_forms.scss +220 -559
- data/vendor/twitter/bootstrap/sass/_glyphicons.scss +232 -0
- data/vendor/twitter/bootstrap/sass/_grid.scss +336 -11
- data/vendor/twitter/bootstrap/sass/_input-groups.scss +127 -0
- data/vendor/twitter/bootstrap/sass/_jumbotron.scss +40 -0
- data/vendor/twitter/bootstrap/sass/_labels.scss +58 -0
- data/vendor/twitter/bootstrap/sass/_list-group.scss +88 -0
- data/vendor/twitter/bootstrap/sass/_media.scss +8 -7
- data/vendor/twitter/bootstrap/sass/_mixins.scss +465 -433
- data/vendor/twitter/bootstrap/sass/_modals.scss +102 -52
- data/vendor/twitter/bootstrap/sass/_navbar.scss +511 -383
- data/vendor/twitter/bootstrap/sass/_navs.scss +169 -349
- data/vendor/twitter/bootstrap/sass/_normalize.scss +396 -0
- data/vendor/twitter/bootstrap/sass/_pager.scss +45 -33
- data/vendor/twitter/bootstrap/sass/_pagination.scss +65 -105
- data/vendor/twitter/bootstrap/sass/_panels.scss +148 -0
- data/vendor/twitter/bootstrap/sass/_popovers.scss +51 -51
- data/vendor/twitter/bootstrap/sass/_print.scss +100 -0
- data/vendor/twitter/bootstrap/sass/_progress-bars.scss +28 -55
- data/vendor/twitter/bootstrap/sass/_responsive-utilities.scss +180 -45
- data/vendor/twitter/bootstrap/sass/_scaffolding.scss +101 -24
- data/vendor/twitter/bootstrap/sass/_tables.scss +169 -168
- data/vendor/twitter/bootstrap/sass/_theme.scss +232 -0
- data/vendor/twitter/bootstrap/sass/_thumbnails.scss +11 -33
- data/vendor/twitter/bootstrap/sass/_tooltip.scss +45 -20
- data/vendor/twitter/bootstrap/sass/_type.scss +101 -110
- data/vendor/twitter/bootstrap/sass/_utilities.scss +19 -22
- data/vendor/twitter/bootstrap/sass/_variables.scss +498 -179
- data/vendor/twitter/bootstrap/sass/_wells.scss +7 -7
- data/vendor/twitter/bootstrap/sass/bootstrap.scss +29 -33
- metadata +47 -56
- data/lib/bootstrap/generators/engine.rb +0 -14
- data/lib/generators/bootstrap/install/templates/assets/stylesheets/bootstrap-variables.css.scss +0 -301
- data/lib/generators/bootstrap/install/templates/assets/stylesheets/hero.css +0 -18
- data/lib/generators/bootstrap/install/templates/assets/stylesheets/hero.css.less +0 -19
- data/lib/generators/bootstrap/install/templates/assets/stylesheets/hero.css.scss +0 -19
- data/lib/generators/bootstrap/install/templates/config/initializers/simple_form.rb +0 -176
- data/lib/generators/bootstrap/install/templates/config/locales/simple_form.en.yml +0 -24
- data/lib/generators/bootstrap/install/templates/form_builders/simple_form/_form.html.erb +0 -13
- data/lib/generators/bootstrap/install/templates/form_builders/simple_form/_form.html.haml +0 -10
- data/lib/generators/bootstrap/install/templates/layouts/fluid.html.erb +0 -80
- data/lib/generators/bootstrap/install/templates/layouts/fluid.html.haml +0 -94
- data/lib/generators/bootstrap/install/templates/layouts/hero.html.erb +0 -53
- data/vendor/assets/images/glyphicons-halflings-white.png +0 -0
- data/vendor/assets/images/glyphicons-halflings.png +0 -0
- data/vendor/assets/javascripts/bootstrap-affix.js +0 -117
- data/vendor/assets/javascripts/bootstrap-button.js +0 -105
- data/vendor/assets/javascripts/bootstrap-carousel.js +0 -207
- data/vendor/assets/javascripts/bootstrap-collapse.js +0 -167
- data/vendor/assets/javascripts/bootstrap-dropdown.js +0 -169
- data/vendor/assets/javascripts/bootstrap-modal.js +0 -247
- data/vendor/assets/javascripts/bootstrap-popover.js +0 -114
- data/vendor/assets/javascripts/bootstrap-scrollspy.js +0 -162
- data/vendor/assets/javascripts/bootstrap-tab.js +0 -144
- data/vendor/assets/javascripts/bootstrap-tooltip.js +0 -361
- data/vendor/assets/javascripts/bootstrap-transition.js +0 -60
- data/vendor/assets/javascripts/bootstrap-typeahead.js +0 -335
- data/vendor/assets/stylesheets/bootstrap-responsive.css +0 -1109
- data/vendor/twitter/bootstrap/less/accordion.less +0 -34
- data/vendor/twitter/bootstrap/less/hero-unit.less +0 -25
- data/vendor/twitter/bootstrap/less/labels-badges.less +0 -84
- data/vendor/twitter/bootstrap/less/layouts.less +0 -16
- data/vendor/twitter/bootstrap/less/reset.less +0 -216
- data/vendor/twitter/bootstrap/less/responsive-1200px-min.less +0 -28
- data/vendor/twitter/bootstrap/less/responsive-767px-max.less +0 -193
- data/vendor/twitter/bootstrap/less/responsive-768px-979px.less +0 -19
- data/vendor/twitter/bootstrap/less/responsive-navbar.less +0 -189
- data/vendor/twitter/bootstrap/less/responsive.less +0 -48
- data/vendor/twitter/bootstrap/less/sprites.less +0 -197
- data/vendor/twitter/bootstrap/sass/_accordion.scss +0 -34
- data/vendor/twitter/bootstrap/sass/_hero-unit.scss +0 -25
- data/vendor/twitter/bootstrap/sass/_labels-badges.scss +0 -83
- data/vendor/twitter/bootstrap/sass/_layouts.scss +0 -16
- data/vendor/twitter/bootstrap/sass/_reset.scss +0 -216
- data/vendor/twitter/bootstrap/sass/_responsive-1200px-min.scss +0 -28
- data/vendor/twitter/bootstrap/sass/_responsive-767px-max.scss +0 -193
- data/vendor/twitter/bootstrap/sass/_responsive-768px-979px.scss +0 -19
- data/vendor/twitter/bootstrap/sass/_responsive-navbar.scss +0 -189
- data/vendor/twitter/bootstrap/sass/_sprites.scss +0 -197
- data/vendor/twitter/bootstrap/sass/responsive.scss +0 -48
@@ -1,114 +0,0 @@
|
|
1
|
-
/* ===========================================================
|
2
|
-
* bootstrap-popover.js v2.3.2
|
3
|
-
* http://getbootstrap.com/2.3.2/javascript.html#popovers
|
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 ($) {
|
22
|
-
|
23
|
-
"use strict"; // jshint ;_;
|
24
|
-
|
25
|
-
|
26
|
-
/* POPOVER PUBLIC CLASS DEFINITION
|
27
|
-
* =============================== */
|
28
|
-
|
29
|
-
var Popover = function (element, options) {
|
30
|
-
this.init('popover', element, options)
|
31
|
-
}
|
32
|
-
|
33
|
-
|
34
|
-
/* NOTE: POPOVER EXTENDS BOOTSTRAP-TOOLTIP.js
|
35
|
-
========================================== */
|
36
|
-
|
37
|
-
Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype, {
|
38
|
-
|
39
|
-
constructor: Popover
|
40
|
-
|
41
|
-
, setContent: function () {
|
42
|
-
var $tip = this.tip()
|
43
|
-
, title = this.getTitle()
|
44
|
-
, content = this.getContent()
|
45
|
-
|
46
|
-
$tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
|
47
|
-
$tip.find('.popover-content')[this.options.html ? 'html' : 'text'](content)
|
48
|
-
|
49
|
-
$tip.removeClass('fade top bottom left right in')
|
50
|
-
}
|
51
|
-
|
52
|
-
, hasContent: function () {
|
53
|
-
return this.getTitle() || this.getContent()
|
54
|
-
}
|
55
|
-
|
56
|
-
, getContent: function () {
|
57
|
-
var content
|
58
|
-
, $e = this.$element
|
59
|
-
, o = this.options
|
60
|
-
|
61
|
-
content = (typeof o.content == 'function' ? o.content.call($e[0]) : o.content)
|
62
|
-
|| $e.attr('data-content')
|
63
|
-
|
64
|
-
return content
|
65
|
-
}
|
66
|
-
|
67
|
-
, tip: function () {
|
68
|
-
if (!this.$tip) {
|
69
|
-
this.$tip = $(this.options.template)
|
70
|
-
}
|
71
|
-
return this.$tip
|
72
|
-
}
|
73
|
-
|
74
|
-
, destroy: function () {
|
75
|
-
this.hide().$element.off('.' + this.type).removeData(this.type)
|
76
|
-
}
|
77
|
-
|
78
|
-
})
|
79
|
-
|
80
|
-
|
81
|
-
/* POPOVER PLUGIN DEFINITION
|
82
|
-
* ======================= */
|
83
|
-
|
84
|
-
var old = $.fn.popover
|
85
|
-
|
86
|
-
$.fn.popover = function (option) {
|
87
|
-
return this.each(function () {
|
88
|
-
var $this = $(this)
|
89
|
-
, data = $this.data('popover')
|
90
|
-
, options = typeof option == 'object' && option
|
91
|
-
if (!data) $this.data('popover', (data = new Popover(this, options)))
|
92
|
-
if (typeof option == 'string') data[option]()
|
93
|
-
})
|
94
|
-
}
|
95
|
-
|
96
|
-
$.fn.popover.Constructor = Popover
|
97
|
-
|
98
|
-
$.fn.popover.defaults = $.extend({} , $.fn.tooltip.defaults, {
|
99
|
-
placement: 'right'
|
100
|
-
, trigger: 'click'
|
101
|
-
, content: ''
|
102
|
-
, template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
|
103
|
-
})
|
104
|
-
|
105
|
-
|
106
|
-
/* POPOVER NO CONFLICT
|
107
|
-
* =================== */
|
108
|
-
|
109
|
-
$.fn.popover.noConflict = function () {
|
110
|
-
$.fn.popover = old
|
111
|
-
return this
|
112
|
-
}
|
113
|
-
|
114
|
-
}(window.jQuery);
|
@@ -1,162 +0,0 @@
|
|
1
|
-
/* =============================================================
|
2
|
-
* bootstrap-scrollspy.js v2.3.2
|
3
|
-
* http://getbootstrap.com/2.3.2/javascript.html#scrollspy
|
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 ($) {
|
22
|
-
|
23
|
-
"use strict"; // jshint ;_;
|
24
|
-
|
25
|
-
|
26
|
-
/* SCROLLSPY CLASS DEFINITION
|
27
|
-
* ========================== */
|
28
|
-
|
29
|
-
function ScrollSpy(element, options) {
|
30
|
-
var process = $.proxy(this.process, this)
|
31
|
-
, $element = $(element).is('body') ? $(window) : $(element)
|
32
|
-
, href
|
33
|
-
this.options = $.extend({}, $.fn.scrollspy.defaults, options)
|
34
|
-
this.$scrollElement = $element.on('scroll.scroll-spy.data-api', process)
|
35
|
-
this.selector = (this.options.target
|
36
|
-
|| ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|
37
|
-
|| '') + ' .nav li > a'
|
38
|
-
this.$body = $('body')
|
39
|
-
this.refresh()
|
40
|
-
this.process()
|
41
|
-
}
|
42
|
-
|
43
|
-
ScrollSpy.prototype = {
|
44
|
-
|
45
|
-
constructor: ScrollSpy
|
46
|
-
|
47
|
-
, refresh: function () {
|
48
|
-
var self = this
|
49
|
-
, $targets
|
50
|
-
|
51
|
-
this.offsets = $([])
|
52
|
-
this.targets = $([])
|
53
|
-
|
54
|
-
$targets = this.$body
|
55
|
-
.find(this.selector)
|
56
|
-
.map(function () {
|
57
|
-
var $el = $(this)
|
58
|
-
, href = $el.data('target') || $el.attr('href')
|
59
|
-
, $href = /^#\w/.test(href) && $(href)
|
60
|
-
return ( $href
|
61
|
-
&& $href.length
|
62
|
-
&& [[ $href.position().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]] ) || null
|
63
|
-
})
|
64
|
-
.sort(function (a, b) { return a[0] - b[0] })
|
65
|
-
.each(function () {
|
66
|
-
self.offsets.push(this[0])
|
67
|
-
self.targets.push(this[1])
|
68
|
-
})
|
69
|
-
}
|
70
|
-
|
71
|
-
, process: function () {
|
72
|
-
var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
|
73
|
-
, scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight
|
74
|
-
, maxScroll = scrollHeight - this.$scrollElement.height()
|
75
|
-
, offsets = this.offsets
|
76
|
-
, targets = this.targets
|
77
|
-
, activeTarget = this.activeTarget
|
78
|
-
, i
|
79
|
-
|
80
|
-
if (scrollTop >= maxScroll) {
|
81
|
-
return activeTarget != (i = targets.last()[0])
|
82
|
-
&& this.activate ( i )
|
83
|
-
}
|
84
|
-
|
85
|
-
for (i = offsets.length; i--;) {
|
86
|
-
activeTarget != targets[i]
|
87
|
-
&& scrollTop >= offsets[i]
|
88
|
-
&& (!offsets[i + 1] || scrollTop <= offsets[i + 1])
|
89
|
-
&& this.activate( targets[i] )
|
90
|
-
}
|
91
|
-
}
|
92
|
-
|
93
|
-
, activate: function (target) {
|
94
|
-
var active
|
95
|
-
, selector
|
96
|
-
|
97
|
-
this.activeTarget = target
|
98
|
-
|
99
|
-
$(this.selector)
|
100
|
-
.parent('.active')
|
101
|
-
.removeClass('active')
|
102
|
-
|
103
|
-
selector = this.selector
|
104
|
-
+ '[data-target="' + target + '"],'
|
105
|
-
+ this.selector + '[href="' + target + '"]'
|
106
|
-
|
107
|
-
active = $(selector)
|
108
|
-
.parent('li')
|
109
|
-
.addClass('active')
|
110
|
-
|
111
|
-
if (active.parent('.dropdown-menu').length) {
|
112
|
-
active = active.closest('li.dropdown').addClass('active')
|
113
|
-
}
|
114
|
-
|
115
|
-
active.trigger('activate')
|
116
|
-
}
|
117
|
-
|
118
|
-
}
|
119
|
-
|
120
|
-
|
121
|
-
/* SCROLLSPY PLUGIN DEFINITION
|
122
|
-
* =========================== */
|
123
|
-
|
124
|
-
var old = $.fn.scrollspy
|
125
|
-
|
126
|
-
$.fn.scrollspy = function (option) {
|
127
|
-
return this.each(function () {
|
128
|
-
var $this = $(this)
|
129
|
-
, data = $this.data('scrollspy')
|
130
|
-
, options = typeof option == 'object' && option
|
131
|
-
if (!data) $this.data('scrollspy', (data = new ScrollSpy(this, options)))
|
132
|
-
if (typeof option == 'string') data[option]()
|
133
|
-
})
|
134
|
-
}
|
135
|
-
|
136
|
-
$.fn.scrollspy.Constructor = ScrollSpy
|
137
|
-
|
138
|
-
$.fn.scrollspy.defaults = {
|
139
|
-
offset: 10
|
140
|
-
}
|
141
|
-
|
142
|
-
|
143
|
-
/* SCROLLSPY NO CONFLICT
|
144
|
-
* ===================== */
|
145
|
-
|
146
|
-
$.fn.scrollspy.noConflict = function () {
|
147
|
-
$.fn.scrollspy = old
|
148
|
-
return this
|
149
|
-
}
|
150
|
-
|
151
|
-
|
152
|
-
/* SCROLLSPY DATA-API
|
153
|
-
* ================== */
|
154
|
-
|
155
|
-
$(window).on('load', function () {
|
156
|
-
$('[data-spy="scroll"]').each(function () {
|
157
|
-
var $spy = $(this)
|
158
|
-
$spy.scrollspy($spy.data())
|
159
|
-
})
|
160
|
-
})
|
161
|
-
|
162
|
-
}(window.jQuery);
|
@@ -1,144 +0,0 @@
|
|
1
|
-
/* ========================================================
|
2
|
-
* bootstrap-tab.js v2.3.2
|
3
|
-
* http://getbootstrap.com/2.3.2/javascript.html#tabs
|
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 ($) {
|
22
|
-
|
23
|
-
"use strict"; // jshint ;_;
|
24
|
-
|
25
|
-
|
26
|
-
/* TAB CLASS DEFINITION
|
27
|
-
* ==================== */
|
28
|
-
|
29
|
-
var Tab = function (element) {
|
30
|
-
this.element = $(element)
|
31
|
-
}
|
32
|
-
|
33
|
-
Tab.prototype = {
|
34
|
-
|
35
|
-
constructor: Tab
|
36
|
-
|
37
|
-
, show: function () {
|
38
|
-
var $this = this.element
|
39
|
-
, $ul = $this.closest('ul:not(.dropdown-menu)')
|
40
|
-
, selector = $this.attr('data-target')
|
41
|
-
, previous
|
42
|
-
, $target
|
43
|
-
, e
|
44
|
-
|
45
|
-
if (!selector) {
|
46
|
-
selector = $this.attr('href')
|
47
|
-
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
|
48
|
-
}
|
49
|
-
|
50
|
-
if ( $this.parent('li').hasClass('active') ) return
|
51
|
-
|
52
|
-
previous = $ul.find('.active:last a')[0]
|
53
|
-
|
54
|
-
e = $.Event('show', {
|
55
|
-
relatedTarget: previous
|
56
|
-
})
|
57
|
-
|
58
|
-
$this.trigger(e)
|
59
|
-
|
60
|
-
if (e.isDefaultPrevented()) return
|
61
|
-
|
62
|
-
$target = $(selector)
|
63
|
-
|
64
|
-
this.activate($this.parent('li'), $ul)
|
65
|
-
this.activate($target, $target.parent(), function () {
|
66
|
-
$this.trigger({
|
67
|
-
type: 'shown'
|
68
|
-
, relatedTarget: previous
|
69
|
-
})
|
70
|
-
})
|
71
|
-
}
|
72
|
-
|
73
|
-
, activate: function ( element, container, callback) {
|
74
|
-
var $active = container.find('> .active')
|
75
|
-
, transition = callback
|
76
|
-
&& $.support.transition
|
77
|
-
&& $active.hasClass('fade')
|
78
|
-
|
79
|
-
function next() {
|
80
|
-
$active
|
81
|
-
.removeClass('active')
|
82
|
-
.find('> .dropdown-menu > .active')
|
83
|
-
.removeClass('active')
|
84
|
-
|
85
|
-
element.addClass('active')
|
86
|
-
|
87
|
-
if (transition) {
|
88
|
-
element[0].offsetWidth // reflow for transition
|
89
|
-
element.addClass('in')
|
90
|
-
} else {
|
91
|
-
element.removeClass('fade')
|
92
|
-
}
|
93
|
-
|
94
|
-
if ( element.parent('.dropdown-menu') ) {
|
95
|
-
element.closest('li.dropdown').addClass('active')
|
96
|
-
}
|
97
|
-
|
98
|
-
callback && callback()
|
99
|
-
}
|
100
|
-
|
101
|
-
transition ?
|
102
|
-
$active.one($.support.transition.end, next) :
|
103
|
-
next()
|
104
|
-
|
105
|
-
$active.removeClass('in')
|
106
|
-
}
|
107
|
-
}
|
108
|
-
|
109
|
-
|
110
|
-
/* TAB PLUGIN DEFINITION
|
111
|
-
* ===================== */
|
112
|
-
|
113
|
-
var old = $.fn.tab
|
114
|
-
|
115
|
-
$.fn.tab = function ( option ) {
|
116
|
-
return this.each(function () {
|
117
|
-
var $this = $(this)
|
118
|
-
, data = $this.data('tab')
|
119
|
-
if (!data) $this.data('tab', (data = new Tab(this)))
|
120
|
-
if (typeof option == 'string') data[option]()
|
121
|
-
})
|
122
|
-
}
|
123
|
-
|
124
|
-
$.fn.tab.Constructor = Tab
|
125
|
-
|
126
|
-
|
127
|
-
/* TAB NO CONFLICT
|
128
|
-
* =============== */
|
129
|
-
|
130
|
-
$.fn.tab.noConflict = function () {
|
131
|
-
$.fn.tab = old
|
132
|
-
return this
|
133
|
-
}
|
134
|
-
|
135
|
-
|
136
|
-
/* TAB DATA-API
|
137
|
-
* ============ */
|
138
|
-
|
139
|
-
$(document).on('click.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
|
140
|
-
e.preventDefault()
|
141
|
-
$(this).tab('show')
|
142
|
-
})
|
143
|
-
|
144
|
-
}(window.jQuery);
|
@@ -1,361 +0,0 @@
|
|
1
|
-
/* ===========================================================
|
2
|
-
* bootstrap-tooltip.js v2.3.2
|
3
|
-
* http://getbootstrap.com/2.3.2/javascript.html#tooltips
|
4
|
-
* Inspired by the original jQuery.tipsy by Jason Frame
|
5
|
-
* ===========================================================
|
6
|
-
* Copyright 2013 Twitter, Inc.
|
7
|
-
*
|
8
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
-
* you may not use this file except in compliance with the License.
|
10
|
-
* You may obtain a copy of the License at
|
11
|
-
*
|
12
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
13
|
-
*
|
14
|
-
* Unless required by applicable law or agreed to in writing, software
|
15
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
16
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
17
|
-
* See the License for the specific language governing permissions and
|
18
|
-
* limitations under the License.
|
19
|
-
* ========================================================== */
|
20
|
-
|
21
|
-
|
22
|
-
!function ($) {
|
23
|
-
|
24
|
-
"use strict"; // jshint ;_;
|
25
|
-
|
26
|
-
|
27
|
-
/* TOOLTIP PUBLIC CLASS DEFINITION
|
28
|
-
* =============================== */
|
29
|
-
|
30
|
-
var Tooltip = function (element, options) {
|
31
|
-
this.init('tooltip', element, options)
|
32
|
-
}
|
33
|
-
|
34
|
-
Tooltip.prototype = {
|
35
|
-
|
36
|
-
constructor: Tooltip
|
37
|
-
|
38
|
-
, init: function (type, element, options) {
|
39
|
-
var eventIn
|
40
|
-
, eventOut
|
41
|
-
, triggers
|
42
|
-
, trigger
|
43
|
-
, i
|
44
|
-
|
45
|
-
this.type = type
|
46
|
-
this.$element = $(element)
|
47
|
-
this.options = this.getOptions(options)
|
48
|
-
this.enabled = true
|
49
|
-
|
50
|
-
triggers = this.options.trigger.split(' ')
|
51
|
-
|
52
|
-
for (i = triggers.length; i--;) {
|
53
|
-
trigger = triggers[i]
|
54
|
-
if (trigger == 'click') {
|
55
|
-
this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
|
56
|
-
} else if (trigger != 'manual') {
|
57
|
-
eventIn = trigger == 'hover' ? 'mouseenter' : 'focus'
|
58
|
-
eventOut = trigger == 'hover' ? 'mouseleave' : 'blur'
|
59
|
-
this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
|
60
|
-
this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
|
61
|
-
}
|
62
|
-
}
|
63
|
-
|
64
|
-
this.options.selector ?
|
65
|
-
(this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
|
66
|
-
this.fixTitle()
|
67
|
-
}
|
68
|
-
|
69
|
-
, getOptions: function (options) {
|
70
|
-
options = $.extend({}, $.fn[this.type].defaults, this.$element.data(), options)
|
71
|
-
|
72
|
-
if (options.delay && typeof options.delay == 'number') {
|
73
|
-
options.delay = {
|
74
|
-
show: options.delay
|
75
|
-
, hide: options.delay
|
76
|
-
}
|
77
|
-
}
|
78
|
-
|
79
|
-
return options
|
80
|
-
}
|
81
|
-
|
82
|
-
, enter: function (e) {
|
83
|
-
var defaults = $.fn[this.type].defaults
|
84
|
-
, options = {}
|
85
|
-
, self
|
86
|
-
|
87
|
-
this._options && $.each(this._options, function (key, value) {
|
88
|
-
if (defaults[key] != value) options[key] = value
|
89
|
-
}, this)
|
90
|
-
|
91
|
-
self = $(e.currentTarget)[this.type](options).data(this.type)
|
92
|
-
|
93
|
-
if (!self.options.delay || !self.options.delay.show) return self.show()
|
94
|
-
|
95
|
-
clearTimeout(this.timeout)
|
96
|
-
self.hoverState = 'in'
|
97
|
-
this.timeout = setTimeout(function() {
|
98
|
-
if (self.hoverState == 'in') self.show()
|
99
|
-
}, self.options.delay.show)
|
100
|
-
}
|
101
|
-
|
102
|
-
, leave: function (e) {
|
103
|
-
var self = $(e.currentTarget)[this.type](this._options).data(this.type)
|
104
|
-
|
105
|
-
if (this.timeout) clearTimeout(this.timeout)
|
106
|
-
if (!self.options.delay || !self.options.delay.hide) return self.hide()
|
107
|
-
|
108
|
-
self.hoverState = 'out'
|
109
|
-
this.timeout = setTimeout(function() {
|
110
|
-
if (self.hoverState == 'out') self.hide()
|
111
|
-
}, self.options.delay.hide)
|
112
|
-
}
|
113
|
-
|
114
|
-
, show: function () {
|
115
|
-
var $tip
|
116
|
-
, pos
|
117
|
-
, actualWidth
|
118
|
-
, actualHeight
|
119
|
-
, placement
|
120
|
-
, tp
|
121
|
-
, e = $.Event('show')
|
122
|
-
|
123
|
-
if (this.hasContent() && this.enabled) {
|
124
|
-
this.$element.trigger(e)
|
125
|
-
if (e.isDefaultPrevented()) return
|
126
|
-
$tip = this.tip()
|
127
|
-
this.setContent()
|
128
|
-
|
129
|
-
if (this.options.animation) {
|
130
|
-
$tip.addClass('fade')
|
131
|
-
}
|
132
|
-
|
133
|
-
placement = typeof this.options.placement == 'function' ?
|
134
|
-
this.options.placement.call(this, $tip[0], this.$element[0]) :
|
135
|
-
this.options.placement
|
136
|
-
|
137
|
-
$tip
|
138
|
-
.detach()
|
139
|
-
.css({ top: 0, left: 0, display: 'block' })
|
140
|
-
|
141
|
-
this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
|
142
|
-
|
143
|
-
pos = this.getPosition()
|
144
|
-
|
145
|
-
actualWidth = $tip[0].offsetWidth
|
146
|
-
actualHeight = $tip[0].offsetHeight
|
147
|
-
|
148
|
-
switch (placement) {
|
149
|
-
case 'bottom':
|
150
|
-
tp = {top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}
|
151
|
-
break
|
152
|
-
case 'top':
|
153
|
-
tp = {top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}
|
154
|
-
break
|
155
|
-
case 'left':
|
156
|
-
tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}
|
157
|
-
break
|
158
|
-
case 'right':
|
159
|
-
tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}
|
160
|
-
break
|
161
|
-
}
|
162
|
-
|
163
|
-
this.applyPlacement(tp, placement)
|
164
|
-
this.$element.trigger('shown')
|
165
|
-
}
|
166
|
-
}
|
167
|
-
|
168
|
-
, applyPlacement: function(offset, placement){
|
169
|
-
var $tip = this.tip()
|
170
|
-
, width = $tip[0].offsetWidth
|
171
|
-
, height = $tip[0].offsetHeight
|
172
|
-
, actualWidth
|
173
|
-
, actualHeight
|
174
|
-
, delta
|
175
|
-
, replace
|
176
|
-
|
177
|
-
$tip
|
178
|
-
.offset(offset)
|
179
|
-
.addClass(placement)
|
180
|
-
.addClass('in')
|
181
|
-
|
182
|
-
actualWidth = $tip[0].offsetWidth
|
183
|
-
actualHeight = $tip[0].offsetHeight
|
184
|
-
|
185
|
-
if (placement == 'top' && actualHeight != height) {
|
186
|
-
offset.top = offset.top + height - actualHeight
|
187
|
-
replace = true
|
188
|
-
}
|
189
|
-
|
190
|
-
if (placement == 'bottom' || placement == 'top') {
|
191
|
-
delta = 0
|
192
|
-
|
193
|
-
if (offset.left < 0){
|
194
|
-
delta = offset.left * -2
|
195
|
-
offset.left = 0
|
196
|
-
$tip.offset(offset)
|
197
|
-
actualWidth = $tip[0].offsetWidth
|
198
|
-
actualHeight = $tip[0].offsetHeight
|
199
|
-
}
|
200
|
-
|
201
|
-
this.replaceArrow(delta - width + actualWidth, actualWidth, 'left')
|
202
|
-
} else {
|
203
|
-
this.replaceArrow(actualHeight - height, actualHeight, 'top')
|
204
|
-
}
|
205
|
-
|
206
|
-
if (replace) $tip.offset(offset)
|
207
|
-
}
|
208
|
-
|
209
|
-
, replaceArrow: function(delta, dimension, position){
|
210
|
-
this
|
211
|
-
.arrow()
|
212
|
-
.css(position, delta ? (50 * (1 - delta / dimension) + "%") : '')
|
213
|
-
}
|
214
|
-
|
215
|
-
, setContent: function () {
|
216
|
-
var $tip = this.tip()
|
217
|
-
, title = this.getTitle()
|
218
|
-
|
219
|
-
$tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
|
220
|
-
$tip.removeClass('fade in top bottom left right')
|
221
|
-
}
|
222
|
-
|
223
|
-
, hide: function () {
|
224
|
-
var that = this
|
225
|
-
, $tip = this.tip()
|
226
|
-
, e = $.Event('hide')
|
227
|
-
|
228
|
-
this.$element.trigger(e)
|
229
|
-
if (e.isDefaultPrevented()) return
|
230
|
-
|
231
|
-
$tip.removeClass('in')
|
232
|
-
|
233
|
-
function removeWithAnimation() {
|
234
|
-
var timeout = setTimeout(function () {
|
235
|
-
$tip.off($.support.transition.end).detach()
|
236
|
-
}, 500)
|
237
|
-
|
238
|
-
$tip.one($.support.transition.end, function () {
|
239
|
-
clearTimeout(timeout)
|
240
|
-
$tip.detach()
|
241
|
-
})
|
242
|
-
}
|
243
|
-
|
244
|
-
$.support.transition && this.$tip.hasClass('fade') ?
|
245
|
-
removeWithAnimation() :
|
246
|
-
$tip.detach()
|
247
|
-
|
248
|
-
this.$element.trigger('hidden')
|
249
|
-
|
250
|
-
return this
|
251
|
-
}
|
252
|
-
|
253
|
-
, fixTitle: function () {
|
254
|
-
var $e = this.$element
|
255
|
-
if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
|
256
|
-
$e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
|
257
|
-
}
|
258
|
-
}
|
259
|
-
|
260
|
-
, hasContent: function () {
|
261
|
-
return this.getTitle()
|
262
|
-
}
|
263
|
-
|
264
|
-
, getPosition: function () {
|
265
|
-
var el = this.$element[0]
|
266
|
-
return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : {
|
267
|
-
width: el.offsetWidth
|
268
|
-
, height: el.offsetHeight
|
269
|
-
}, this.$element.offset())
|
270
|
-
}
|
271
|
-
|
272
|
-
, getTitle: function () {
|
273
|
-
var title
|
274
|
-
, $e = this.$element
|
275
|
-
, o = this.options
|
276
|
-
|
277
|
-
title = $e.attr('data-original-title')
|
278
|
-
|| (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
|
279
|
-
|
280
|
-
return title
|
281
|
-
}
|
282
|
-
|
283
|
-
, tip: function () {
|
284
|
-
return this.$tip = this.$tip || $(this.options.template)
|
285
|
-
}
|
286
|
-
|
287
|
-
, arrow: function(){
|
288
|
-
return this.$arrow = this.$arrow || this.tip().find(".tooltip-arrow")
|
289
|
-
}
|
290
|
-
|
291
|
-
, validate: function () {
|
292
|
-
if (!this.$element[0].parentNode) {
|
293
|
-
this.hide()
|
294
|
-
this.$element = null
|
295
|
-
this.options = null
|
296
|
-
}
|
297
|
-
}
|
298
|
-
|
299
|
-
, enable: function () {
|
300
|
-
this.enabled = true
|
301
|
-
}
|
302
|
-
|
303
|
-
, disable: function () {
|
304
|
-
this.enabled = false
|
305
|
-
}
|
306
|
-
|
307
|
-
, toggleEnabled: function () {
|
308
|
-
this.enabled = !this.enabled
|
309
|
-
}
|
310
|
-
|
311
|
-
, toggle: function (e) {
|
312
|
-
var self = e ? $(e.currentTarget)[this.type](this._options).data(this.type) : this
|
313
|
-
self.tip().hasClass('in') ? self.hide() : self.show()
|
314
|
-
}
|
315
|
-
|
316
|
-
, destroy: function () {
|
317
|
-
this.hide().$element.off('.' + this.type).removeData(this.type)
|
318
|
-
}
|
319
|
-
|
320
|
-
}
|
321
|
-
|
322
|
-
|
323
|
-
/* TOOLTIP PLUGIN DEFINITION
|
324
|
-
* ========================= */
|
325
|
-
|
326
|
-
var old = $.fn.tooltip
|
327
|
-
|
328
|
-
$.fn.tooltip = function ( option ) {
|
329
|
-
return this.each(function () {
|
330
|
-
var $this = $(this)
|
331
|
-
, data = $this.data('tooltip')
|
332
|
-
, options = typeof option == 'object' && option
|
333
|
-
if (!data) $this.data('tooltip', (data = new Tooltip(this, options)))
|
334
|
-
if (typeof option == 'string') data[option]()
|
335
|
-
})
|
336
|
-
}
|
337
|
-
|
338
|
-
$.fn.tooltip.Constructor = Tooltip
|
339
|
-
|
340
|
-
$.fn.tooltip.defaults = {
|
341
|
-
animation: true
|
342
|
-
, placement: 'top'
|
343
|
-
, selector: false
|
344
|
-
, template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'
|
345
|
-
, trigger: 'hover focus'
|
346
|
-
, title: ''
|
347
|
-
, delay: 0
|
348
|
-
, html: false
|
349
|
-
, container: false
|
350
|
-
}
|
351
|
-
|
352
|
-
|
353
|
-
/* TOOLTIP NO CONFLICT
|
354
|
-
* =================== */
|
355
|
-
|
356
|
-
$.fn.tooltip.noConflict = function () {
|
357
|
-
$.fn.tooltip = old
|
358
|
-
return this
|
359
|
-
}
|
360
|
-
|
361
|
-
}(window.jQuery);
|