fix-twitter-bootstrap-rails 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. data/README.md +213 -0
  2. data/Rakefile +14 -0
  3. data/lib/generators/bootstrap/install/install_generator.rb +53 -0
  4. data/lib/generators/bootstrap/install/templates/application.css +7 -0
  5. data/lib/generators/bootstrap/install/templates/application.js +10 -0
  6. data/lib/generators/bootstrap/install/templates/bootstrap.coffee +4 -0
  7. data/lib/generators/bootstrap/install/templates/bootstrap_and_overrides.less +19 -0
  8. data/lib/generators/bootstrap/layout/layout_generator.rb +23 -0
  9. data/lib/generators/bootstrap/layout/templates/layout.html.erb +99 -0
  10. data/lib/generators/bootstrap/layout/templates/layout.html.haml +71 -0
  11. data/lib/generators/bootstrap/layout/templates/layout.html.slim +72 -0
  12. data/lib/generators/bootstrap/themed/templates/_form.html.erb +19 -0
  13. data/lib/generators/bootstrap/themed/templates/_form.html.haml +13 -0
  14. data/lib/generators/bootstrap/themed/templates/_form.html.slim +11 -0
  15. data/lib/generators/bootstrap/themed/templates/edit.html.erb +1 -0
  16. data/lib/generators/bootstrap/themed/templates/edit.html.haml +2 -0
  17. data/lib/generators/bootstrap/themed/templates/edit.html.slim +3 -0
  18. data/lib/generators/bootstrap/themed/templates/index.html.erb +30 -0
  19. data/lib/generators/bootstrap/themed/templates/index.html.haml +25 -0
  20. data/lib/generators/bootstrap/themed/templates/index.html.slim +25 -0
  21. data/lib/generators/bootstrap/themed/templates/new.html.erb +1 -0
  22. data/lib/generators/bootstrap/themed/templates/new.html.haml +2 -0
  23. data/lib/generators/bootstrap/themed/templates/new.html.slim +2 -0
  24. data/lib/generators/bootstrap/themed/templates/show.html.erb +14 -0
  25. data/lib/generators/bootstrap/themed/templates/show.html.haml +9 -0
  26. data/lib/generators/bootstrap/themed/templates/show.html.slim +9 -0
  27. data/lib/generators/bootstrap/themed/themed_generator.rb +96 -0
  28. data/lib/twitter-bootstrap-rails.rb +10 -0
  29. data/lib/twitter/bootstrap/rails/bootstrap.rb +2 -0
  30. data/lib/twitter/bootstrap/rails/engine.rb +17 -0
  31. data/lib/twitter/bootstrap/rails/version.rb +7 -0
  32. data/vendor/assets/images/twitter/bootstrap/glyphicons-halflings-white.png +0 -0
  33. data/vendor/assets/images/twitter/bootstrap/glyphicons-halflings.png +0 -0
  34. data/vendor/assets/javascripts/twitter/bootstrap.js +12 -0
  35. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-alert.js +94 -0
  36. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-button.js +100 -0
  37. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-carousel.js +157 -0
  38. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-collapse.js +136 -0
  39. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-dropdown.js +92 -0
  40. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-modal.js +210 -0
  41. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-popover.js +95 -0
  42. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-scrollspy.js +125 -0
  43. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-tab.js +130 -0
  44. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-tooltip.js +270 -0
  45. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-transition.js +51 -0
  46. data/vendor/assets/javascripts/twitter/bootstrap/bootstrap-typeahead.js +271 -0
  47. data/vendor/toolkit/twitter/bootstrap/accordion.less +28 -0
  48. data/vendor/toolkit/twitter/bootstrap/alerts.less +70 -0
  49. data/vendor/toolkit/twitter/bootstrap/bootstrap.less +62 -0
  50. data/vendor/toolkit/twitter/bootstrap/breadcrumbs.less +22 -0
  51. data/vendor/toolkit/twitter/bootstrap/button-groups.less +148 -0
  52. data/vendor/toolkit/twitter/bootstrap/buttons.less +183 -0
  53. data/vendor/toolkit/twitter/bootstrap/carousel.less +121 -0
  54. data/vendor/toolkit/twitter/bootstrap/close.less +18 -0
  55. data/vendor/toolkit/twitter/bootstrap/code.less +57 -0
  56. data/vendor/toolkit/twitter/bootstrap/component-animations.less +18 -0
  57. data/vendor/toolkit/twitter/bootstrap/dropdowns.less +130 -0
  58. data/vendor/toolkit/twitter/bootstrap/forms.less +522 -0
  59. data/vendor/toolkit/twitter/bootstrap/grid.less +8 -0
  60. data/vendor/toolkit/twitter/bootstrap/hero-unit.less +20 -0
  61. data/vendor/toolkit/twitter/bootstrap/labels.less +32 -0
  62. data/vendor/toolkit/twitter/bootstrap/layouts.less +17 -0
  63. data/vendor/toolkit/twitter/bootstrap/mixins.less +590 -0
  64. data/vendor/toolkit/twitter/bootstrap/modals.less +83 -0
  65. data/vendor/toolkit/twitter/bootstrap/navbar.less +299 -0
  66. data/vendor/toolkit/twitter/bootstrap/navs.less +353 -0
  67. data/vendor/toolkit/twitter/bootstrap/pager.less +30 -0
  68. data/vendor/toolkit/twitter/bootstrap/pagination.less +55 -0
  69. data/vendor/toolkit/twitter/bootstrap/popovers.less +49 -0
  70. data/vendor/toolkit/twitter/bootstrap/progress-bars.less +95 -0
  71. data/vendor/toolkit/twitter/bootstrap/reset.less +126 -0
  72. data/vendor/toolkit/twitter/bootstrap/responsive.less +327 -0
  73. data/vendor/toolkit/twitter/bootstrap/scaffolding.less +29 -0
  74. data/vendor/toolkit/twitter/bootstrap/sprites.less +158 -0
  75. data/vendor/toolkit/twitter/bootstrap/tables.less +150 -0
  76. data/vendor/toolkit/twitter/bootstrap/thumbnails.less +35 -0
  77. data/vendor/toolkit/twitter/bootstrap/tooltip.less +35 -0
  78. data/vendor/toolkit/twitter/bootstrap/type.less +218 -0
  79. data/vendor/toolkit/twitter/bootstrap/utilities.less +23 -0
  80. data/vendor/toolkit/twitter/bootstrap/variables.less +107 -0
  81. data/vendor/toolkit/twitter/bootstrap/wells.less +17 -0
  82. data/vendor/toolkit/twitter/bootstrap_base.less +2 -0
  83. metadata +172 -0
@@ -0,0 +1,92 @@
1
+ /* ============================================================
2
+ * bootstrap-dropdown.js v2.0.1
3
+ * http://twitter.github.com/bootstrap/javascript.html#dropdowns
4
+ * ============================================================
5
+ * Copyright 2012 Twitter, Inc.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ * ============================================================ */
19
+
20
+
21
+ !function( $ ){
22
+
23
+ "use strict"
24
+
25
+ /* DROPDOWN CLASS DEFINITION
26
+ * ========================= */
27
+
28
+ var toggle = '[data-toggle="dropdown"]'
29
+ , Dropdown = function ( element ) {
30
+ var $el = $(element).on('click.dropdown.data-api', this.toggle)
31
+ $('html').on('click.dropdown.data-api', function () {
32
+ $el.parent().removeClass('open')
33
+ })
34
+ }
35
+
36
+ Dropdown.prototype = {
37
+
38
+ constructor: Dropdown
39
+
40
+ , toggle: function ( e ) {
41
+ var $this = $(this)
42
+ , selector = $this.attr('data-target')
43
+ , $parent
44
+ , isActive
45
+
46
+ if (!selector) {
47
+ selector = $this.attr('href')
48
+ selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
49
+ }
50
+
51
+ $parent = $(selector)
52
+ $parent.length || ($parent = $this.parent())
53
+
54
+ isActive = $parent.hasClass('open')
55
+
56
+ clearMenus()
57
+ !isActive && $parent.toggleClass('open')
58
+
59
+ return false
60
+ }
61
+
62
+ }
63
+
64
+ function clearMenus() {
65
+ $(toggle).parent().removeClass('open')
66
+ }
67
+
68
+
69
+ /* DROPDOWN PLUGIN DEFINITION
70
+ * ========================== */
71
+
72
+ $.fn.dropdown = function ( option ) {
73
+ return this.each(function () {
74
+ var $this = $(this)
75
+ , data = $this.data('dropdown')
76
+ if (!data) $this.data('dropdown', (data = new Dropdown(this)))
77
+ if (typeof option == 'string') data[option].call($this)
78
+ })
79
+ }
80
+
81
+ $.fn.dropdown.Constructor = Dropdown
82
+
83
+
84
+ /* APPLY TO STANDARD DROPDOWN ELEMENTS
85
+ * =================================== */
86
+
87
+ $(function () {
88
+ $('html').on('click.dropdown.data-api', clearMenus)
89
+ $('body').on('click.dropdown.data-api', toggle, Dropdown.prototype.toggle)
90
+ })
91
+
92
+ }( window.jQuery );
@@ -0,0 +1,210 @@
1
+ /* =========================================================
2
+ * bootstrap-modal.js v2.0.1
3
+ * http://twitter.github.com/bootstrap/javascript.html#modals
4
+ * =========================================================
5
+ * Copyright 2012 Twitter, Inc.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ * ========================================================= */
19
+
20
+
21
+ !function( $ ){
22
+
23
+ "use strict"
24
+
25
+ /* MODAL CLASS DEFINITION
26
+ * ====================== */
27
+
28
+ var Modal = function ( content, options ) {
29
+ this.options = options
30
+ this.$element = $(content)
31
+ .delegate('[data-dismiss="modal"]', 'click.dismiss.modal', $.proxy(this.hide, this))
32
+ }
33
+
34
+ Modal.prototype = {
35
+
36
+ constructor: Modal
37
+
38
+ , toggle: function () {
39
+ return this[!this.isShown ? 'show' : 'hide']()
40
+ }
41
+
42
+ , show: function () {
43
+ var that = this
44
+
45
+ if (this.isShown) return
46
+
47
+ $('body').addClass('modal-open')
48
+
49
+ this.isShown = true
50
+ this.$element.trigger('show')
51
+
52
+ escape.call(this)
53
+ backdrop.call(this, function () {
54
+ var transition = $.support.transition && that.$element.hasClass('fade')
55
+
56
+ !that.$element.parent().length && that.$element.appendTo(document.body) //don't move modals dom position
57
+
58
+ that.$element
59
+ .show()
60
+
61
+ if (transition) {
62
+ that.$element[0].offsetWidth // force reflow
63
+ }
64
+
65
+ that.$element.addClass('in')
66
+
67
+ transition ?
68
+ that.$element.one($.support.transition.end, function () { that.$element.trigger('shown') }) :
69
+ that.$element.trigger('shown')
70
+
71
+ })
72
+ }
73
+
74
+ , hide: function ( e ) {
75
+ e && e.preventDefault()
76
+
77
+ if (!this.isShown) return
78
+
79
+ var that = this
80
+ this.isShown = false
81
+
82
+ $('body').removeClass('modal-open')
83
+
84
+ escape.call(this)
85
+
86
+ this.$element
87
+ .trigger('hide')
88
+ .removeClass('in')
89
+
90
+ $.support.transition && this.$element.hasClass('fade') ?
91
+ hideWithTransition.call(this) :
92
+ hideModal.call(this)
93
+ }
94
+
95
+ }
96
+
97
+
98
+ /* MODAL PRIVATE METHODS
99
+ * ===================== */
100
+
101
+ function hideWithTransition() {
102
+ var that = this
103
+ , timeout = setTimeout(function () {
104
+ that.$element.off($.support.transition.end)
105
+ hideModal.call(that)
106
+ }, 500)
107
+
108
+ this.$element.one($.support.transition.end, function () {
109
+ clearTimeout(timeout)
110
+ hideModal.call(that)
111
+ })
112
+ }
113
+
114
+ function hideModal( that ) {
115
+ this.$element
116
+ .hide()
117
+ .trigger('hidden')
118
+
119
+ backdrop.call(this)
120
+ }
121
+
122
+ function backdrop( callback ) {
123
+ var that = this
124
+ , animate = this.$element.hasClass('fade') ? 'fade' : ''
125
+
126
+ if (this.isShown && this.options.backdrop) {
127
+ var doAnimate = $.support.transition && animate
128
+
129
+ this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
130
+ .appendTo(document.body)
131
+
132
+ if (this.options.backdrop != 'static') {
133
+ this.$backdrop.click($.proxy(this.hide, this))
134
+ }
135
+
136
+ if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
137
+
138
+ this.$backdrop.addClass('in')
139
+
140
+ doAnimate ?
141
+ this.$backdrop.one($.support.transition.end, callback) :
142
+ callback()
143
+
144
+ } else if (!this.isShown && this.$backdrop) {
145
+ this.$backdrop.removeClass('in')
146
+
147
+ $.support.transition && this.$element.hasClass('fade')?
148
+ this.$backdrop.one($.support.transition.end, $.proxy(removeBackdrop, this)) :
149
+ removeBackdrop.call(this)
150
+
151
+ } else if (callback) {
152
+ callback()
153
+ }
154
+ }
155
+
156
+ function removeBackdrop() {
157
+ this.$backdrop.remove()
158
+ this.$backdrop = null
159
+ }
160
+
161
+ function escape() {
162
+ var that = this
163
+ if (this.isShown && this.options.keyboard) {
164
+ $(document).on('keyup.dismiss.modal', function ( e ) {
165
+ e.which == 27 && that.hide()
166
+ })
167
+ } else if (!this.isShown) {
168
+ $(document).off('keyup.dismiss.modal')
169
+ }
170
+ }
171
+
172
+
173
+ /* MODAL PLUGIN DEFINITION
174
+ * ======================= */
175
+
176
+ $.fn.modal = function ( option ) {
177
+ return this.each(function () {
178
+ var $this = $(this)
179
+ , data = $this.data('modal')
180
+ , options = $.extend({}, $.fn.modal.defaults, $this.data(), typeof option == 'object' && option)
181
+ if (!data) $this.data('modal', (data = new Modal(this, options)))
182
+ if (typeof option == 'string') data[option]()
183
+ else if (options.show) data.show()
184
+ })
185
+ }
186
+
187
+ $.fn.modal.defaults = {
188
+ backdrop: true
189
+ , keyboard: true
190
+ , show: true
191
+ }
192
+
193
+ $.fn.modal.Constructor = Modal
194
+
195
+
196
+ /* MODAL DATA-API
197
+ * ============== */
198
+
199
+ $(function () {
200
+ $('body').on('click.modal.data-api', '[data-toggle="modal"]', function ( e ) {
201
+ var $this = $(this), href
202
+ , $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
203
+ , option = $target.data('modal') ? 'toggle' : $.extend({}, $target.data(), $this.data())
204
+
205
+ e.preventDefault()
206
+ $target.modal(option)
207
+ })
208
+ })
209
+
210
+ }( window.jQuery );
@@ -0,0 +1,95 @@
1
+ /* ===========================================================
2
+ * bootstrap-popover.js v2.0.1
3
+ * http://twitter.github.com/bootstrap/javascript.html#popovers
4
+ * ===========================================================
5
+ * Copyright 2012 Twitter, Inc.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ * =========================================================== */
19
+
20
+
21
+ !function( $ ) {
22
+
23
+ "use strict"
24
+
25
+ var Popover = function ( element, options ) {
26
+ this.init('popover', element, options)
27
+ }
28
+
29
+ /* NOTE: POPOVER EXTENDS BOOTSTRAP-TOOLTIP.js
30
+ ========================================== */
31
+
32
+ Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype, {
33
+
34
+ constructor: Popover
35
+
36
+ , setContent: function () {
37
+ var $tip = this.tip()
38
+ , title = this.getTitle()
39
+ , content = this.getContent()
40
+
41
+ $tip.find('.popover-title')[ $.type(title) == 'object' ? 'append' : 'html' ](title)
42
+ $tip.find('.popover-content > *')[ $.type(content) == 'object' ? 'append' : 'html' ](content)
43
+
44
+ $tip.removeClass('fade top bottom left right in')
45
+ }
46
+
47
+ , hasContent: function () {
48
+ return this.getTitle() || this.getContent()
49
+ }
50
+
51
+ , getContent: function () {
52
+ var content
53
+ , $e = this.$element
54
+ , o = this.options
55
+
56
+ content = $e.attr('data-content')
57
+ || (typeof o.content == 'function' ? o.content.call($e[0]) : o.content)
58
+
59
+ content = content.toString().replace(/(^\s*|\s*$)/, "")
60
+
61
+ return content
62
+ }
63
+
64
+ , tip: function() {
65
+ if (!this.$tip) {
66
+ this.$tip = $(this.options.template)
67
+ }
68
+ return this.$tip
69
+ }
70
+
71
+ })
72
+
73
+
74
+ /* POPOVER PLUGIN DEFINITION
75
+ * ======================= */
76
+
77
+ $.fn.popover = function ( option ) {
78
+ return this.each(function () {
79
+ var $this = $(this)
80
+ , data = $this.data('popover')
81
+ , options = typeof option == 'object' && option
82
+ if (!data) $this.data('popover', (data = new Popover(this, options)))
83
+ if (typeof option == 'string') data[option]()
84
+ })
85
+ }
86
+
87
+ $.fn.popover.Constructor = Popover
88
+
89
+ $.fn.popover.defaults = $.extend({} , $.fn.tooltip.defaults, {
90
+ placement: 'right'
91
+ , content: ''
92
+ , template: '<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"><p></p></div></div></div>'
93
+ })
94
+
95
+ }( window.jQuery );
@@ -0,0 +1,125 @@
1
+ /* =============================================================
2
+ * bootstrap-scrollspy.js v2.0.1
3
+ * http://twitter.github.com/bootstrap/javascript.html#scrollspy
4
+ * =============================================================
5
+ * Copyright 2012 Twitter, Inc.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ * ============================================================== */
19
+
20
+ !function ( $ ) {
21
+
22
+ "use strict"
23
+
24
+ /* SCROLLSPY CLASS DEFINITION
25
+ * ========================== */
26
+
27
+ function ScrollSpy( element, options) {
28
+ var process = $.proxy(this.process, this)
29
+ , $element = $(element).is('body') ? $(window) : $(element)
30
+ , href
31
+ this.options = $.extend({}, $.fn.scrollspy.defaults, options)
32
+ this.$scrollElement = $element.on('scroll.scroll.data-api', process)
33
+ this.selector = (this.options.target
34
+ || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
35
+ || '') + ' .nav li > a'
36
+ this.$body = $('body').on('click.scroll.data-api', this.selector, process)
37
+ this.refresh()
38
+ this.process()
39
+ }
40
+
41
+ ScrollSpy.prototype = {
42
+
43
+ constructor: ScrollSpy
44
+
45
+ , refresh: function () {
46
+ this.targets = this.$body
47
+ .find(this.selector)
48
+ .map(function () {
49
+ var href = $(this).attr('href')
50
+ return /^#\w/.test(href) && $(href).length ? href : null
51
+ })
52
+
53
+ this.offsets = $.map(this.targets, function (id) {
54
+ return $(id).position().top
55
+ })
56
+ }
57
+
58
+ , process: function () {
59
+ var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
60
+ , offsets = this.offsets
61
+ , targets = this.targets
62
+ , activeTarget = this.activeTarget
63
+ , i
64
+
65
+ for (i = offsets.length; i--;) {
66
+ activeTarget != targets[i]
67
+ && scrollTop >= offsets[i]
68
+ && (!offsets[i + 1] || scrollTop <= offsets[i + 1])
69
+ && this.activate( targets[i] )
70
+ }
71
+ }
72
+
73
+ , activate: function (target) {
74
+ var active
75
+
76
+ this.activeTarget = target
77
+
78
+ this.$body
79
+ .find(this.selector).parent('.active')
80
+ .removeClass('active')
81
+
82
+ active = this.$body
83
+ .find(this.selector + '[href="' + target + '"]')
84
+ .parent('li')
85
+ .addClass('active')
86
+
87
+ if ( active.parent('.dropdown-menu') ) {
88
+ active.closest('li.dropdown').addClass('active')
89
+ }
90
+ }
91
+
92
+ }
93
+
94
+
95
+ /* SCROLLSPY PLUGIN DEFINITION
96
+ * =========================== */
97
+
98
+ $.fn.scrollspy = function ( option ) {
99
+ return this.each(function () {
100
+ var $this = $(this)
101
+ , data = $this.data('scrollspy')
102
+ , options = typeof option == 'object' && option
103
+ if (!data) $this.data('scrollspy', (data = new ScrollSpy(this, options)))
104
+ if (typeof option == 'string') data[option]()
105
+ })
106
+ }
107
+
108
+ $.fn.scrollspy.Constructor = ScrollSpy
109
+
110
+ $.fn.scrollspy.defaults = {
111
+ offset: 10
112
+ }
113
+
114
+
115
+ /* SCROLLSPY DATA-API
116
+ * ================== */
117
+
118
+ $(function () {
119
+ $('[data-spy="scroll"]').each(function () {
120
+ var $spy = $(this)
121
+ $spy.scrollspy($spy.data())
122
+ })
123
+ })
124
+
125
+ }( window.jQuery );