drink_up_doctor 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (157) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +13 -0
  3. data/.travis.yml +4 -0
  4. data/CODE_OF_CONDUCT.md +32 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +74 -0
  8. data/Rakefile +11 -0
  9. data/bin/console +14 -0
  10. data/bin/setup +7 -0
  11. data/bootstrap-boilerplate/.gitignore +8 -0
  12. data/bootstrap-boilerplate/404.html +25 -0
  13. data/bootstrap-boilerplate/README.md.tt +88 -0
  14. data/bootstrap-boilerplate/_includes/footer.html +18 -0
  15. data/bootstrap-boilerplate/_includes/google_analytics.html +10 -0
  16. data/bootstrap-boilerplate/_includes/head.html +11 -0
  17. data/bootstrap-boilerplate/_includes/header.html +27 -0
  18. data/bootstrap-boilerplate/_includes/index_item.html +5 -0
  19. data/bootstrap-boilerplate/_includes/page_js.html +4 -0
  20. data/bootstrap-boilerplate/_layouts/category_index.html +12 -0
  21. data/bootstrap-boilerplate/_layouts/default.html +22 -0
  22. data/bootstrap-boilerplate/_layouts/page.html +13 -0
  23. data/bootstrap-boilerplate/_layouts/post.html +13 -0
  24. data/bootstrap-boilerplate/_layouts/tag_index.html +14 -0
  25. data/bootstrap-boilerplate/_plugins/category_index.rb +42 -0
  26. data/bootstrap-boilerplate/_plugins/slug_sort.rb +13 -0
  27. data/bootstrap-boilerplate/_plugins/tag_index.rb +41 -0
  28. data/bootstrap-boilerplate/_posts/2015-10-18-post-four.md +17 -0
  29. data/bootstrap-boilerplate/_posts/2015-10-18-post-one.md +12 -0
  30. data/bootstrap-boilerplate/_posts/2015-10-18-post-three.md +20 -0
  31. data/bootstrap-boilerplate/_posts/2015-10-18-post-two.md +16 -0
  32. data/bootstrap-boilerplate/_posts/2015-10-18-welcome.md +8 -0
  33. data/bootstrap-boilerplate/_sass/_bootstrap-compass.scss +9 -0
  34. data/bootstrap-boilerplate/_sass/_bootstrap-mincer.scss +19 -0
  35. data/bootstrap-boilerplate/_sass/_bootstrap-sprockets.scss +9 -0
  36. data/bootstrap-boilerplate/_sass/_bootstrap.scss +56 -0
  37. data/bootstrap-boilerplate/_sass/_my_variables.scss +874 -0
  38. data/bootstrap-boilerplate/_sass/bootstrap/_alerts.scss +73 -0
  39. data/bootstrap-boilerplate/_sass/bootstrap/_badges.scss +68 -0
  40. data/bootstrap-boilerplate/_sass/bootstrap/_breadcrumbs.scss +26 -0
  41. data/bootstrap-boilerplate/_sass/bootstrap/_button-groups.scss +244 -0
  42. data/bootstrap-boilerplate/_sass/bootstrap/_buttons.scss +168 -0
  43. data/bootstrap-boilerplate/_sass/bootstrap/_carousel.scss +269 -0
  44. data/bootstrap-boilerplate/_sass/bootstrap/_close.scss +36 -0
  45. data/bootstrap-boilerplate/_sass/bootstrap/_code.scss +69 -0
  46. data/bootstrap-boilerplate/_sass/bootstrap/_component-animations.scss +37 -0
  47. data/bootstrap-boilerplate/_sass/bootstrap/_dropdowns.scss +216 -0
  48. data/bootstrap-boilerplate/_sass/bootstrap/_forms.scss +611 -0
  49. data/bootstrap-boilerplate/_sass/bootstrap/_glyphicons.scss +307 -0
  50. data/bootstrap-boilerplate/_sass/bootstrap/_grid.scss +84 -0
  51. data/bootstrap-boilerplate/_sass/bootstrap/_input-groups.scss +167 -0
  52. data/bootstrap-boilerplate/_sass/bootstrap/_jumbotron.scss +52 -0
  53. data/bootstrap-boilerplate/_sass/bootstrap/_labels.scss +66 -0
  54. data/bootstrap-boilerplate/_sass/bootstrap/_list-group.scss +130 -0
  55. data/bootstrap-boilerplate/_sass/bootstrap/_media.scss +66 -0
  56. data/bootstrap-boilerplate/_sass/bootstrap/_mixins.scss +40 -0
  57. data/bootstrap-boilerplate/_sass/bootstrap/_modals.scss +150 -0
  58. data/bootstrap-boilerplate/_sass/bootstrap/_navbar.scss +662 -0
  59. data/bootstrap-boilerplate/_sass/bootstrap/_navs.scss +242 -0
  60. data/bootstrap-boilerplate/_sass/bootstrap/_normalize.scss +424 -0
  61. data/bootstrap-boilerplate/_sass/bootstrap/_pager.scss +54 -0
  62. data/bootstrap-boilerplate/_sass/bootstrap/_pagination.scss +89 -0
  63. data/bootstrap-boilerplate/_sass/bootstrap/_panels.scss +271 -0
  64. data/bootstrap-boilerplate/_sass/bootstrap/_popovers.scss +131 -0
  65. data/bootstrap-boilerplate/_sass/bootstrap/_print.scss +101 -0
  66. data/bootstrap-boilerplate/_sass/bootstrap/_progress-bars.scss +87 -0
  67. data/bootstrap-boilerplate/_sass/bootstrap/_responsive-embed.scss +35 -0
  68. data/bootstrap-boilerplate/_sass/bootstrap/_responsive-utilities.scss +179 -0
  69. data/bootstrap-boilerplate/_sass/bootstrap/_scaffolding.scss +161 -0
  70. data/bootstrap-boilerplate/_sass/bootstrap/_tables.scss +234 -0
  71. data/bootstrap-boilerplate/_sass/bootstrap/_theme.scss +291 -0
  72. data/bootstrap-boilerplate/_sass/bootstrap/_thumbnails.scss +38 -0
  73. data/bootstrap-boilerplate/_sass/bootstrap/_tooltip.scss +101 -0
  74. data/bootstrap-boilerplate/_sass/bootstrap/_type.scss +298 -0
  75. data/bootstrap-boilerplate/_sass/bootstrap/_utilities.scss +55 -0
  76. data/bootstrap-boilerplate/_sass/bootstrap/_variables.scss +872 -0
  77. data/bootstrap-boilerplate/_sass/bootstrap/_wells.scss +29 -0
  78. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_alerts.scss +14 -0
  79. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_background-variant.scss +12 -0
  80. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_border-radius.scss +18 -0
  81. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_buttons.scss +68 -0
  82. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_center-block.scss +7 -0
  83. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_clearfix.scss +22 -0
  84. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_forms.scss +88 -0
  85. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_gradients.scss +58 -0
  86. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
  87. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_grid.scss +122 -0
  88. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_hide-text.scss +21 -0
  89. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_image.scss +33 -0
  90. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_labels.scss +12 -0
  91. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_list-group.scss +32 -0
  92. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  93. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  94. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_opacity.scss +8 -0
  95. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_pagination.scss +24 -0
  96. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_panels.scss +24 -0
  97. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_progress-bar.scss +10 -0
  98. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_reset-filter.scss +8 -0
  99. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_reset-text.scss +18 -0
  100. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_resize.scss +6 -0
  101. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_responsive-visibility.scss +21 -0
  102. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_size.scss +10 -0
  103. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_tab-focus.scss +9 -0
  104. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_table-row.scss +28 -0
  105. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_text-emphasis.scss +12 -0
  106. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_text-overflow.scss +8 -0
  107. data/bootstrap-boilerplate/_sass/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  108. data/bootstrap-boilerplate/_sass/main.scss +20 -0
  109. data/bootstrap-boilerplate/about/index.md +24 -0
  110. data/bootstrap-boilerplate/apple-touch-icon.png +0 -0
  111. data/bootstrap-boilerplate/browserconfig.xml +12 -0
  112. data/bootstrap-boilerplate/crossdomain.xml +14 -0
  113. data/bootstrap-boilerplate/favicon.ico +0 -0
  114. data/bootstrap-boilerplate/fonts/glyphicons-halflings-regular.eot +0 -0
  115. data/bootstrap-boilerplate/fonts/glyphicons-halflings-regular.svg +229 -0
  116. data/bootstrap-boilerplate/fonts/glyphicons-halflings-regular.ttf +0 -0
  117. data/bootstrap-boilerplate/fonts/glyphicons-halflings-regular.woff +0 -0
  118. data/bootstrap-boilerplate/humans.txt.tt +18 -0
  119. data/bootstrap-boilerplate/index.html +18 -0
  120. data/bootstrap-boilerplate/js/main.js +1 -0
  121. data/bootstrap-boilerplate/js/vendor/bootstrap/affix.js +162 -0
  122. data/bootstrap-boilerplate/js/vendor/bootstrap/alert.js +94 -0
  123. data/bootstrap-boilerplate/js/vendor/bootstrap/button.js +120 -0
  124. data/bootstrap-boilerplate/js/vendor/bootstrap/carousel.js +237 -0
  125. data/bootstrap-boilerplate/js/vendor/bootstrap/collapse.js +211 -0
  126. data/bootstrap-boilerplate/js/vendor/bootstrap/dropdown.js +165 -0
  127. data/bootstrap-boilerplate/js/vendor/bootstrap/modal.js +337 -0
  128. data/bootstrap-boilerplate/js/vendor/bootstrap/popover.js +108 -0
  129. data/bootstrap-boilerplate/js/vendor/bootstrap/scrollspy.js +172 -0
  130. data/bootstrap-boilerplate/js/vendor/bootstrap/tab.js +155 -0
  131. data/bootstrap-boilerplate/js/vendor/bootstrap/tooltip.js +514 -0
  132. data/bootstrap-boilerplate/js/vendor/bootstrap/transition.js +59 -0
  133. data/bootstrap-boilerplate/js/vendor/bootstrap-sprockets.js +12 -0
  134. data/bootstrap-boilerplate/js/vendor/bootstrap.js +2363 -0
  135. data/bootstrap-boilerplate/js/vendor/bootstrap.min.js +7 -0
  136. data/bootstrap-boilerplate/js/vendor/jquery-1.11.2.js +10346 -0
  137. data/bootstrap-boilerplate/js/vendor/jquery-1.11.2.min.js +4 -0
  138. data/bootstrap-boilerplate/js/vendor/modernizr-2.8.3-respond-1.4.2.min.js +11 -0
  139. data/bootstrap-boilerplate/js/vendor/npm.js +13 -0
  140. data/bootstrap-boilerplate/robots.txt +5 -0
  141. data/bootstrap-boilerplate/tile-wide.png +0 -0
  142. data/bootstrap-boilerplate/tile.png +0 -0
  143. data/drink_up_doctor.gemspec +29 -0
  144. data/exe/drink_up_doctor +4 -0
  145. data/lib/drink_up_doctor/new_site.rb +178 -0
  146. data/lib/drink_up_doctor/new_twbs_site.rb +124 -0
  147. data/lib/drink_up_doctor/version.rb +3 -0
  148. data/lib/drink_up_doctor.rb +12 -0
  149. data/templates/Gemfile +11 -0
  150. data/templates/README.md.erb +81 -0
  151. data/templates/bower.json.erb +17 -0
  152. data/templates/gulpfile.js.erb +84 -0
  153. data/templates/main.scss +46 -0
  154. data/templates/package.json.erb +20 -0
  155. data/templates/setup.sh +2 -0
  156. data/templates/site_gitignore +7 -0
  157. metadata +285 -0
@@ -0,0 +1,165 @@
1
+ /* ========================================================================
2
+ * Bootstrap: dropdown.js v3.3.5
3
+ * http://getbootstrap.com/javascript/#dropdowns
4
+ * ========================================================================
5
+ * Copyright 2011-2015 Twitter, Inc.
6
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
7
+ * ======================================================================== */
8
+
9
+
10
+ +function ($) {
11
+ 'use strict';
12
+
13
+ // DROPDOWN CLASS DEFINITION
14
+ // =========================
15
+
16
+ var backdrop = '.dropdown-backdrop'
17
+ var toggle = '[data-toggle="dropdown"]'
18
+ var Dropdown = function (element) {
19
+ $(element).on('click.bs.dropdown', this.toggle)
20
+ }
21
+
22
+ Dropdown.VERSION = '3.3.5'
23
+
24
+ function getParent($this) {
25
+ var selector = $this.attr('data-target')
26
+
27
+ if (!selector) {
28
+ selector = $this.attr('href')
29
+ selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
30
+ }
31
+
32
+ var $parent = selector && $(selector)
33
+
34
+ return $parent && $parent.length ? $parent : $this.parent()
35
+ }
36
+
37
+ function clearMenus(e) {
38
+ if (e && e.which === 3) return
39
+ $(backdrop).remove()
40
+ $(toggle).each(function () {
41
+ var $this = $(this)
42
+ var $parent = getParent($this)
43
+ var relatedTarget = { relatedTarget: this }
44
+
45
+ if (!$parent.hasClass('open')) return
46
+
47
+ if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return
48
+
49
+ $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
50
+
51
+ if (e.isDefaultPrevented()) return
52
+
53
+ $this.attr('aria-expanded', 'false')
54
+ $parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
55
+ })
56
+ }
57
+
58
+ Dropdown.prototype.toggle = function (e) {
59
+ var $this = $(this)
60
+
61
+ if ($this.is('.disabled, :disabled')) return
62
+
63
+ var $parent = getParent($this)
64
+ var isActive = $parent.hasClass('open')
65
+
66
+ clearMenus()
67
+
68
+ if (!isActive) {
69
+ if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
70
+ // if mobile we use a backdrop because click events don't delegate
71
+ $(document.createElement('div'))
72
+ .addClass('dropdown-backdrop')
73
+ .insertAfter($(this))
74
+ .on('click', clearMenus)
75
+ }
76
+
77
+ var relatedTarget = { relatedTarget: this }
78
+ $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
79
+
80
+ if (e.isDefaultPrevented()) return
81
+
82
+ $this
83
+ .trigger('focus')
84
+ .attr('aria-expanded', 'true')
85
+
86
+ $parent
87
+ .toggleClass('open')
88
+ .trigger('shown.bs.dropdown', relatedTarget)
89
+ }
90
+
91
+ return false
92
+ }
93
+
94
+ Dropdown.prototype.keydown = function (e) {
95
+ if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return
96
+
97
+ var $this = $(this)
98
+
99
+ e.preventDefault()
100
+ e.stopPropagation()
101
+
102
+ if ($this.is('.disabled, :disabled')) return
103
+
104
+ var $parent = getParent($this)
105
+ var isActive = $parent.hasClass('open')
106
+
107
+ if (!isActive && e.which != 27 || isActive && e.which == 27) {
108
+ if (e.which == 27) $parent.find(toggle).trigger('focus')
109
+ return $this.trigger('click')
110
+ }
111
+
112
+ var desc = ' li:not(.disabled):visible a'
113
+ var $items = $parent.find('.dropdown-menu' + desc)
114
+
115
+ if (!$items.length) return
116
+
117
+ var index = $items.index(e.target)
118
+
119
+ if (e.which == 38 && index > 0) index-- // up
120
+ if (e.which == 40 && index < $items.length - 1) index++ // down
121
+ if (!~index) index = 0
122
+
123
+ $items.eq(index).trigger('focus')
124
+ }
125
+
126
+
127
+ // DROPDOWN PLUGIN DEFINITION
128
+ // ==========================
129
+
130
+ function Plugin(option) {
131
+ return this.each(function () {
132
+ var $this = $(this)
133
+ var data = $this.data('bs.dropdown')
134
+
135
+ if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
136
+ if (typeof option == 'string') data[option].call($this)
137
+ })
138
+ }
139
+
140
+ var old = $.fn.dropdown
141
+
142
+ $.fn.dropdown = Plugin
143
+ $.fn.dropdown.Constructor = Dropdown
144
+
145
+
146
+ // DROPDOWN NO CONFLICT
147
+ // ====================
148
+
149
+ $.fn.dropdown.noConflict = function () {
150
+ $.fn.dropdown = old
151
+ return this
152
+ }
153
+
154
+
155
+ // APPLY TO STANDARD DROPDOWN ELEMENTS
156
+ // ===================================
157
+
158
+ $(document)
159
+ .on('click.bs.dropdown.data-api', clearMenus)
160
+ .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
161
+ .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
162
+ .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
163
+ .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown)
164
+
165
+ }(jQuery);
@@ -0,0 +1,337 @@
1
+ /* ========================================================================
2
+ * Bootstrap: modal.js v3.3.5
3
+ * http://getbootstrap.com/javascript/#modals
4
+ * ========================================================================
5
+ * Copyright 2011-2015 Twitter, Inc.
6
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
7
+ * ======================================================================== */
8
+
9
+
10
+ +function ($) {
11
+ 'use strict';
12
+
13
+ // MODAL CLASS DEFINITION
14
+ // ======================
15
+
16
+ var Modal = function (element, options) {
17
+ this.options = options
18
+ this.$body = $(document.body)
19
+ this.$element = $(element)
20
+ this.$dialog = this.$element.find('.modal-dialog')
21
+ this.$backdrop = null
22
+ this.isShown = null
23
+ this.originalBodyPad = null
24
+ this.scrollbarWidth = 0
25
+ this.ignoreBackdropClick = false
26
+
27
+ if (this.options.remote) {
28
+ this.$element
29
+ .find('.modal-content')
30
+ .load(this.options.remote, $.proxy(function () {
31
+ this.$element.trigger('loaded.bs.modal')
32
+ }, this))
33
+ }
34
+ }
35
+
36
+ Modal.VERSION = '3.3.5'
37
+
38
+ Modal.TRANSITION_DURATION = 300
39
+ Modal.BACKDROP_TRANSITION_DURATION = 150
40
+
41
+ Modal.DEFAULTS = {
42
+ backdrop: true,
43
+ keyboard: true,
44
+ show: true
45
+ }
46
+
47
+ Modal.prototype.toggle = function (_relatedTarget) {
48
+ return this.isShown ? this.hide() : this.show(_relatedTarget)
49
+ }
50
+
51
+ Modal.prototype.show = function (_relatedTarget) {
52
+ var that = this
53
+ var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
54
+
55
+ this.$element.trigger(e)
56
+
57
+ if (this.isShown || e.isDefaultPrevented()) return
58
+
59
+ this.isShown = true
60
+
61
+ this.checkScrollbar()
62
+ this.setScrollbar()
63
+ this.$body.addClass('modal-open')
64
+
65
+ this.escape()
66
+ this.resize()
67
+
68
+ this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
69
+
70
+ this.$dialog.on('mousedown.dismiss.bs.modal', function () {
71
+ that.$element.one('mouseup.dismiss.bs.modal', function (e) {
72
+ if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true
73
+ })
74
+ })
75
+
76
+ this.backdrop(function () {
77
+ var transition = $.support.transition && that.$element.hasClass('fade')
78
+
79
+ if (!that.$element.parent().length) {
80
+ that.$element.appendTo(that.$body) // don't move modals dom position
81
+ }
82
+
83
+ that.$element
84
+ .show()
85
+ .scrollTop(0)
86
+
87
+ that.adjustDialog()
88
+
89
+ if (transition) {
90
+ that.$element[0].offsetWidth // force reflow
91
+ }
92
+
93
+ that.$element.addClass('in')
94
+
95
+ that.enforceFocus()
96
+
97
+ var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
98
+
99
+ transition ?
100
+ that.$dialog // wait for modal to slide in
101
+ .one('bsTransitionEnd', function () {
102
+ that.$element.trigger('focus').trigger(e)
103
+ })
104
+ .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
105
+ that.$element.trigger('focus').trigger(e)
106
+ })
107
+ }
108
+
109
+ Modal.prototype.hide = function (e) {
110
+ if (e) e.preventDefault()
111
+
112
+ e = $.Event('hide.bs.modal')
113
+
114
+ this.$element.trigger(e)
115
+
116
+ if (!this.isShown || e.isDefaultPrevented()) return
117
+
118
+ this.isShown = false
119
+
120
+ this.escape()
121
+ this.resize()
122
+
123
+ $(document).off('focusin.bs.modal')
124
+
125
+ this.$element
126
+ .removeClass('in')
127
+ .off('click.dismiss.bs.modal')
128
+ .off('mouseup.dismiss.bs.modal')
129
+
130
+ this.$dialog.off('mousedown.dismiss.bs.modal')
131
+
132
+ $.support.transition && this.$element.hasClass('fade') ?
133
+ this.$element
134
+ .one('bsTransitionEnd', $.proxy(this.hideModal, this))
135
+ .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
136
+ this.hideModal()
137
+ }
138
+
139
+ Modal.prototype.enforceFocus = function () {
140
+ $(document)
141
+ .off('focusin.bs.modal') // guard against infinite focus loop
142
+ .on('focusin.bs.modal', $.proxy(function (e) {
143
+ if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
144
+ this.$element.trigger('focus')
145
+ }
146
+ }, this))
147
+ }
148
+
149
+ Modal.prototype.escape = function () {
150
+ if (this.isShown && this.options.keyboard) {
151
+ this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {
152
+ e.which == 27 && this.hide()
153
+ }, this))
154
+ } else if (!this.isShown) {
155
+ this.$element.off('keydown.dismiss.bs.modal')
156
+ }
157
+ }
158
+
159
+ Modal.prototype.resize = function () {
160
+ if (this.isShown) {
161
+ $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this))
162
+ } else {
163
+ $(window).off('resize.bs.modal')
164
+ }
165
+ }
166
+
167
+ Modal.prototype.hideModal = function () {
168
+ var that = this
169
+ this.$element.hide()
170
+ this.backdrop(function () {
171
+ that.$body.removeClass('modal-open')
172
+ that.resetAdjustments()
173
+ that.resetScrollbar()
174
+ that.$element.trigger('hidden.bs.modal')
175
+ })
176
+ }
177
+
178
+ Modal.prototype.removeBackdrop = function () {
179
+ this.$backdrop && this.$backdrop.remove()
180
+ this.$backdrop = null
181
+ }
182
+
183
+ Modal.prototype.backdrop = function (callback) {
184
+ var that = this
185
+ var animate = this.$element.hasClass('fade') ? 'fade' : ''
186
+
187
+ if (this.isShown && this.options.backdrop) {
188
+ var doAnimate = $.support.transition && animate
189
+
190
+ this.$backdrop = $(document.createElement('div'))
191
+ .addClass('modal-backdrop ' + animate)
192
+ .appendTo(this.$body)
193
+
194
+ this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
195
+ if (this.ignoreBackdropClick) {
196
+ this.ignoreBackdropClick = false
197
+ return
198
+ }
199
+ if (e.target !== e.currentTarget) return
200
+ this.options.backdrop == 'static'
201
+ ? this.$element[0].focus()
202
+ : this.hide()
203
+ }, this))
204
+
205
+ if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
206
+
207
+ this.$backdrop.addClass('in')
208
+
209
+ if (!callback) return
210
+
211
+ doAnimate ?
212
+ this.$backdrop
213
+ .one('bsTransitionEnd', callback)
214
+ .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
215
+ callback()
216
+
217
+ } else if (!this.isShown && this.$backdrop) {
218
+ this.$backdrop.removeClass('in')
219
+
220
+ var callbackRemove = function () {
221
+ that.removeBackdrop()
222
+ callback && callback()
223
+ }
224
+ $.support.transition && this.$element.hasClass('fade') ?
225
+ this.$backdrop
226
+ .one('bsTransitionEnd', callbackRemove)
227
+ .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
228
+ callbackRemove()
229
+
230
+ } else if (callback) {
231
+ callback()
232
+ }
233
+ }
234
+
235
+ // these following methods are used to handle overflowing modals
236
+
237
+ Modal.prototype.handleUpdate = function () {
238
+ this.adjustDialog()
239
+ }
240
+
241
+ Modal.prototype.adjustDialog = function () {
242
+ var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight
243
+
244
+ this.$element.css({
245
+ paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
246
+ paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''
247
+ })
248
+ }
249
+
250
+ Modal.prototype.resetAdjustments = function () {
251
+ this.$element.css({
252
+ paddingLeft: '',
253
+ paddingRight: ''
254
+ })
255
+ }
256
+
257
+ Modal.prototype.checkScrollbar = function () {
258
+ var fullWindowWidth = window.innerWidth
259
+ if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8
260
+ var documentElementRect = document.documentElement.getBoundingClientRect()
261
+ fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left)
262
+ }
263
+ this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth
264
+ this.scrollbarWidth = this.measureScrollbar()
265
+ }
266
+
267
+ Modal.prototype.setScrollbar = function () {
268
+ var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
269
+ this.originalBodyPad = document.body.style.paddingRight || ''
270
+ if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
271
+ }
272
+
273
+ Modal.prototype.resetScrollbar = function () {
274
+ this.$body.css('padding-right', this.originalBodyPad)
275
+ }
276
+
277
+ Modal.prototype.measureScrollbar = function () { // thx walsh
278
+ var scrollDiv = document.createElement('div')
279
+ scrollDiv.className = 'modal-scrollbar-measure'
280
+ this.$body.append(scrollDiv)
281
+ var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth
282
+ this.$body[0].removeChild(scrollDiv)
283
+ return scrollbarWidth
284
+ }
285
+
286
+
287
+ // MODAL PLUGIN DEFINITION
288
+ // =======================
289
+
290
+ function Plugin(option, _relatedTarget) {
291
+ return this.each(function () {
292
+ var $this = $(this)
293
+ var data = $this.data('bs.modal')
294
+ var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
295
+
296
+ if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
297
+ if (typeof option == 'string') data[option](_relatedTarget)
298
+ else if (options.show) data.show(_relatedTarget)
299
+ })
300
+ }
301
+
302
+ var old = $.fn.modal
303
+
304
+ $.fn.modal = Plugin
305
+ $.fn.modal.Constructor = Modal
306
+
307
+
308
+ // MODAL NO CONFLICT
309
+ // =================
310
+
311
+ $.fn.modal.noConflict = function () {
312
+ $.fn.modal = old
313
+ return this
314
+ }
315
+
316
+
317
+ // MODAL DATA-API
318
+ // ==============
319
+
320
+ $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
321
+ var $this = $(this)
322
+ var href = $this.attr('href')
323
+ var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7
324
+ var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
325
+
326
+ if ($this.is('a')) e.preventDefault()
327
+
328
+ $target.one('show.bs.modal', function (showEvent) {
329
+ if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown
330
+ $target.one('hidden.bs.modal', function () {
331
+ $this.is(':visible') && $this.trigger('focus')
332
+ })
333
+ })
334
+ Plugin.call($target, option, this)
335
+ })
336
+
337
+ }(jQuery);
@@ -0,0 +1,108 @@
1
+ /* ========================================================================
2
+ * Bootstrap: popover.js v3.3.5
3
+ * http://getbootstrap.com/javascript/#popovers
4
+ * ========================================================================
5
+ * Copyright 2011-2015 Twitter, Inc.
6
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
7
+ * ======================================================================== */
8
+
9
+
10
+ +function ($) {
11
+ 'use strict';
12
+
13
+ // POPOVER PUBLIC CLASS DEFINITION
14
+ // ===============================
15
+
16
+ var Popover = function (element, options) {
17
+ this.init('popover', element, options)
18
+ }
19
+
20
+ if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
21
+
22
+ Popover.VERSION = '3.3.5'
23
+
24
+ Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
25
+ placement: 'right',
26
+ trigger: 'click',
27
+ content: '',
28
+ template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
29
+ })
30
+
31
+
32
+ // NOTE: POPOVER EXTENDS tooltip.js
33
+ // ================================
34
+
35
+ Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
36
+
37
+ Popover.prototype.constructor = Popover
38
+
39
+ Popover.prototype.getDefaults = function () {
40
+ return Popover.DEFAULTS
41
+ }
42
+
43
+ Popover.prototype.setContent = function () {
44
+ var $tip = this.tip()
45
+ var title = this.getTitle()
46
+ var content = this.getContent()
47
+
48
+ $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
49
+ $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events
50
+ this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
51
+ ](content)
52
+
53
+ $tip.removeClass('fade top bottom left right in')
54
+
55
+ // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
56
+ // this manually by checking the contents.
57
+ if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
58
+ }
59
+
60
+ Popover.prototype.hasContent = function () {
61
+ return this.getTitle() || this.getContent()
62
+ }
63
+
64
+ Popover.prototype.getContent = function () {
65
+ var $e = this.$element
66
+ var o = this.options
67
+
68
+ return $e.attr('data-content')
69
+ || (typeof o.content == 'function' ?
70
+ o.content.call($e[0]) :
71
+ o.content)
72
+ }
73
+
74
+ Popover.prototype.arrow = function () {
75
+ return (this.$arrow = this.$arrow || this.tip().find('.arrow'))
76
+ }
77
+
78
+
79
+ // POPOVER PLUGIN DEFINITION
80
+ // =========================
81
+
82
+ function Plugin(option) {
83
+ return this.each(function () {
84
+ var $this = $(this)
85
+ var data = $this.data('bs.popover')
86
+ var options = typeof option == 'object' && option
87
+
88
+ if (!data && /destroy|hide/.test(option)) return
89
+ if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
90
+ if (typeof option == 'string') data[option]()
91
+ })
92
+ }
93
+
94
+ var old = $.fn.popover
95
+
96
+ $.fn.popover = Plugin
97
+ $.fn.popover.Constructor = Popover
98
+
99
+
100
+ // POPOVER NO CONFLICT
101
+ // ===================
102
+
103
+ $.fn.popover.noConflict = function () {
104
+ $.fn.popover = old
105
+ return this
106
+ }
107
+
108
+ }(jQuery);