StyleSass 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +4 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +41 -0
  8. data/Rakefile +6 -0
  9. data/StyleSass.gemspec +35 -0
  10. data/app/assets/fonts/FontAwesome.otf +0 -0
  11. data/app/assets/fonts/fontawesome-webfont.eot +0 -0
  12. data/app/assets/fonts/fontawesome-webfont.svg +640 -0
  13. data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
  14. data/app/assets/fonts/fontawesome-webfont.woff +0 -0
  15. data/app/assets/fonts/fontawesome-webfont.woff2 +0 -0
  16. data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  17. data/app/assets/fonts/glyphicons-halflings-regular.svg +288 -0
  18. data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  19. data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  20. data/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
  21. data/app/assets/javascripts/bootstrap/affix.js +162 -0
  22. data/app/assets/javascripts/bootstrap/alert.js +94 -0
  23. data/app/assets/javascripts/bootstrap/button.js +120 -0
  24. data/app/assets/javascripts/bootstrap/carousel.js +237 -0
  25. data/app/assets/javascripts/bootstrap/collapse.js +211 -0
  26. data/app/assets/javascripts/bootstrap/dropdown.js +165 -0
  27. data/app/assets/javascripts/bootstrap/modal.js +337 -0
  28. data/app/assets/javascripts/bootstrap/popover.js +108 -0
  29. data/app/assets/javascripts/bootstrap/scrollspy.js +172 -0
  30. data/app/assets/javascripts/bootstrap/tab.js +155 -0
  31. data/app/assets/javascripts/bootstrap/tooltip.js +514 -0
  32. data/app/assets/javascripts/bootstrap/transition.js +59 -0
  33. data/app/assets/javascripts/bootstrap-sprockets.js +12 -0
  34. data/app/assets/javascripts/bootstrap.js +2363 -0
  35. data/app/assets/javascripts/bootstrap.min.js +7 -0
  36. data/app/assets/stylesheets/_bootstrap-compass.scss +9 -0
  37. data/app/assets/stylesheets/_bootstrap-mincer.scss +19 -0
  38. data/app/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
  39. data/app/assets/stylesheets/_bootstrap.scss +56 -0
  40. data/app/assets/stylesheets/_bourbon-deprecated-upcoming.scss +411 -0
  41. data/app/assets/stylesheets/_bourbon.scss +87 -0
  42. data/app/assets/stylesheets/_font-awesome.css.scss +2026 -0
  43. data/app/assets/stylesheets/_font-awesome.min.css.scss +4 -0
  44. data/app/assets/stylesheets/_normalize.css.scss +427 -0
  45. data/app/assets/stylesheets/addons/_border-color.scss +26 -0
  46. data/app/assets/stylesheets/addons/_border-radius.scss +48 -0
  47. data/app/assets/stylesheets/addons/_border-style.scss +25 -0
  48. data/app/assets/stylesheets/addons/_border-width.scss +25 -0
  49. data/app/assets/stylesheets/addons/_buttons.scss +64 -0
  50. data/app/assets/stylesheets/addons/_clearfix.scss +25 -0
  51. data/app/assets/stylesheets/addons/_ellipsis.scss +30 -0
  52. data/app/assets/stylesheets/addons/_font-stacks.scss +31 -0
  53. data/app/assets/stylesheets/addons/_hide-text.scss +27 -0
  54. data/app/assets/stylesheets/addons/_margin.scss +26 -0
  55. data/app/assets/stylesheets/addons/_padding.scss +26 -0
  56. data/app/assets/stylesheets/addons/_position.scss +48 -0
  57. data/app/assets/stylesheets/addons/_prefixer.scss +66 -0
  58. data/app/assets/stylesheets/addons/_retina-image.scss +25 -0
  59. data/app/assets/stylesheets/addons/_size.scss +51 -0
  60. data/app/assets/stylesheets/addons/_text-inputs.scss +113 -0
  61. data/app/assets/stylesheets/addons/_timing-functions.scss +34 -0
  62. data/app/assets/stylesheets/addons/_triangle.scss +63 -0
  63. data/app/assets/stylesheets/addons/_word-wrap.scss +29 -0
  64. data/app/assets/stylesheets/bootstrap/_alerts.scss +73 -0
  65. data/app/assets/stylesheets/bootstrap/_badges.scss +68 -0
  66. data/app/assets/stylesheets/bootstrap/_breadcrumbs.scss +28 -0
  67. data/app/assets/stylesheets/bootstrap/_button-groups.scss +244 -0
  68. data/app/assets/stylesheets/bootstrap/_buttons.scss +168 -0
  69. data/app/assets/stylesheets/bootstrap/_carousel.scss +269 -0
  70. data/app/assets/stylesheets/bootstrap/_close.scss +36 -0
  71. data/app/assets/stylesheets/bootstrap/_code.scss +69 -0
  72. data/app/assets/stylesheets/bootstrap/_component-animations.scss +37 -0
  73. data/app/assets/stylesheets/bootstrap/_dropdowns.scss +216 -0
  74. data/app/assets/stylesheets/bootstrap/_forms.scss +611 -0
  75. data/app/assets/stylesheets/bootstrap/_glyphicons.scss +307 -0
  76. data/app/assets/stylesheets/bootstrap/_grid.scss +84 -0
  77. data/app/assets/stylesheets/bootstrap/_input-groups.scss +167 -0
  78. data/app/assets/stylesheets/bootstrap/_jumbotron.scss +52 -0
  79. data/app/assets/stylesheets/bootstrap/_labels.scss +66 -0
  80. data/app/assets/stylesheets/bootstrap/_list-group.scss +130 -0
  81. data/app/assets/stylesheets/bootstrap/_media.scss +66 -0
  82. data/app/assets/stylesheets/bootstrap/_mixins.scss +40 -0
  83. data/app/assets/stylesheets/bootstrap/_modals.scss +150 -0
  84. data/app/assets/stylesheets/bootstrap/_navbar.scss +662 -0
  85. data/app/assets/stylesheets/bootstrap/_navs.scss +242 -0
  86. data/app/assets/stylesheets/bootstrap/_normalize.scss +424 -0
  87. data/app/assets/stylesheets/bootstrap/_pager.scss +54 -0
  88. data/app/assets/stylesheets/bootstrap/_pagination.scss +89 -0
  89. data/app/assets/stylesheets/bootstrap/_panels.scss +271 -0
  90. data/app/assets/stylesheets/bootstrap/_popovers.scss +131 -0
  91. data/app/assets/stylesheets/bootstrap/_print.scss +101 -0
  92. data/app/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
  93. data/app/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
  94. data/app/assets/stylesheets/bootstrap/_responsive-utilities.scss +179 -0
  95. data/app/assets/stylesheets/bootstrap/_scaffolding.scss +161 -0
  96. data/app/assets/stylesheets/bootstrap/_tables.scss +234 -0
  97. data/app/assets/stylesheets/bootstrap/_theme.scss +291 -0
  98. data/app/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
  99. data/app/assets/stylesheets/bootstrap/_tooltip.scss +101 -0
  100. data/app/assets/stylesheets/bootstrap/_type.scss +298 -0
  101. data/app/assets/stylesheets/bootstrap/_utilities.scss +55 -0
  102. data/app/assets/stylesheets/bootstrap/_variables.scss +872 -0
  103. data/app/assets/stylesheets/bootstrap/_wells.scss +29 -0
  104. data/app/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
  105. data/app/assets/stylesheets/bootstrap/mixins/_background-variant.scss +12 -0
  106. data/app/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
  107. data/app/assets/stylesheets/bootstrap/mixins/_buttons.scss +68 -0
  108. data/app/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
  109. data/app/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
  110. data/app/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
  111. data/app/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
  112. data/app/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
  113. data/app/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
  114. data/app/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
  115. data/app/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
  116. data/app/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
  117. data/app/assets/stylesheets/bootstrap/mixins/_list-group.scss +32 -0
  118. data/app/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
  119. data/app/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  120. data/app/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
  121. data/app/assets/stylesheets/bootstrap/mixins/_pagination.scss +24 -0
  122. data/app/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
  123. data/app/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
  124. data/app/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
  125. data/app/assets/stylesheets/bootstrap/mixins/_reset-text.scss +18 -0
  126. data/app/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  127. data/app/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
  128. data/app/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
  129. data/app/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
  130. data/app/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
  131. data/app/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +12 -0
  132. data/app/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
  133. data/app/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  134. data/app/assets/stylesheets/css3/_animation.scss +43 -0
  135. data/app/assets/stylesheets/css3/_appearance.scss +3 -0
  136. data/app/assets/stylesheets/css3/_backface-visibility.scss +3 -0
  137. data/app/assets/stylesheets/css3/_background-image.scss +42 -0
  138. data/app/assets/stylesheets/css3/_background.scss +55 -0
  139. data/app/assets/stylesheets/css3/_border-image.scss +59 -0
  140. data/app/assets/stylesheets/css3/_calc.scss +4 -0
  141. data/app/assets/stylesheets/css3/_columns.scss +47 -0
  142. data/app/assets/stylesheets/css3/_filter.scss +4 -0
  143. data/app/assets/stylesheets/css3/_flex-box.scss +287 -0
  144. data/app/assets/stylesheets/css3/_font-face.scss +24 -0
  145. data/app/assets/stylesheets/css3/_font-feature-settings.scss +4 -0
  146. data/app/assets/stylesheets/css3/_hidpi-media-query.scss +10 -0
  147. data/app/assets/stylesheets/css3/_hyphens.scss +4 -0
  148. data/app/assets/stylesheets/css3/_image-rendering.scss +14 -0
  149. data/app/assets/stylesheets/css3/_keyframes.scss +36 -0
  150. data/app/assets/stylesheets/css3/_linear-gradient.scss +38 -0
  151. data/app/assets/stylesheets/css3/_perspective.scss +8 -0
  152. data/app/assets/stylesheets/css3/_placeholder.scss +8 -0
  153. data/app/assets/stylesheets/css3/_radial-gradient.scss +39 -0
  154. data/app/assets/stylesheets/css3/_selection.scss +42 -0
  155. data/app/assets/stylesheets/css3/_text-decoration.scss +19 -0
  156. data/app/assets/stylesheets/css3/_transform.scss +15 -0
  157. data/app/assets/stylesheets/css3/_transition.scss +71 -0
  158. data/app/assets/stylesheets/css3/_user-select.scss +3 -0
  159. data/app/assets/stylesheets/functions/_assign-inputs.scss +11 -0
  160. data/app/assets/stylesheets/functions/_contains-falsy.scss +20 -0
  161. data/app/assets/stylesheets/functions/_contains.scss +26 -0
  162. data/app/assets/stylesheets/functions/_is-length.scss +11 -0
  163. data/app/assets/stylesheets/functions/_is-light.scss +21 -0
  164. data/app/assets/stylesheets/functions/_is-number.scss +11 -0
  165. data/app/assets/stylesheets/functions/_is-size.scss +13 -0
  166. data/app/assets/stylesheets/functions/_modular-scale.scss +69 -0
  167. data/app/assets/stylesheets/functions/_px-to-em.scss +13 -0
  168. data/app/assets/stylesheets/functions/_px-to-rem.scss +15 -0
  169. data/app/assets/stylesheets/functions/_shade.scss +24 -0
  170. data/app/assets/stylesheets/functions/_strip-units.scss +17 -0
  171. data/app/assets/stylesheets/functions/_tint.scss +24 -0
  172. data/app/assets/stylesheets/functions/_transition-property-name.scss +22 -0
  173. data/app/assets/stylesheets/functions/_unpack.scss +27 -0
  174. data/app/assets/stylesheets/helpers/_convert-units.scss +21 -0
  175. data/app/assets/stylesheets/helpers/_directional-values.scss +96 -0
  176. data/app/assets/stylesheets/helpers/_font-source-declaration.scss +43 -0
  177. data/app/assets/stylesheets/helpers/_gradient-positions-parser.scss +13 -0
  178. data/app/assets/stylesheets/helpers/_linear-angle-parser.scss +25 -0
  179. data/app/assets/stylesheets/helpers/_linear-gradient-parser.scss +41 -0
  180. data/app/assets/stylesheets/helpers/_linear-positions-parser.scss +61 -0
  181. data/app/assets/stylesheets/helpers/_linear-side-corner-parser.scss +31 -0
  182. data/app/assets/stylesheets/helpers/_radial-arg-parser.scss +69 -0
  183. data/app/assets/stylesheets/helpers/_radial-gradient-parser.scss +50 -0
  184. data/app/assets/stylesheets/helpers/_radial-positions-parser.scss +18 -0
  185. data/app/assets/stylesheets/helpers/_render-gradients.scss +26 -0
  186. data/app/assets/stylesheets/helpers/_shape-size-stripper.scss +10 -0
  187. data/app/assets/stylesheets/helpers/_str-to-num.scss +50 -0
  188. data/app/assets/stylesheets/settings/_asset-pipeline.scss +7 -0
  189. data/app/assets/stylesheets/settings/_prefixer.scss +9 -0
  190. data/app/assets/stylesheets/settings/_px-to-em.scss +1 -0
  191. data/bin/console +14 -0
  192. data/bin/setup +8 -0
  193. data/lib/StyleSass/engine.rb +5 -0
  194. data/lib/StyleSass/version.rb +3 -0
  195. data/lib/StyleSass.rb +2 -0
  196. data/lib/generators/style_sass/install_generator.rb +13 -0
  197. metadata +295 -0
@@ -0,0 +1,162 @@
1
+ /* ========================================================================
2
+ * Bootstrap: affix.js v3.3.5
3
+ * http://getbootstrap.com/javascript/#affix
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
+ // AFFIX CLASS DEFINITION
14
+ // ======================
15
+
16
+ var Affix = function (element, options) {
17
+ this.options = $.extend({}, Affix.DEFAULTS, options)
18
+
19
+ this.$target = $(this.options.target)
20
+ .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
21
+ .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this))
22
+
23
+ this.$element = $(element)
24
+ this.affixed = null
25
+ this.unpin = null
26
+ this.pinnedOffset = null
27
+
28
+ this.checkPosition()
29
+ }
30
+
31
+ Affix.VERSION = '3.3.5'
32
+
33
+ Affix.RESET = 'affix affix-top affix-bottom'
34
+
35
+ Affix.DEFAULTS = {
36
+ offset: 0,
37
+ target: window
38
+ }
39
+
40
+ Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) {
41
+ var scrollTop = this.$target.scrollTop()
42
+ var position = this.$element.offset()
43
+ var targetHeight = this.$target.height()
44
+
45
+ if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false
46
+
47
+ if (this.affixed == 'bottom') {
48
+ if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom'
49
+ return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom'
50
+ }
51
+
52
+ var initializing = this.affixed == null
53
+ var colliderTop = initializing ? scrollTop : position.top
54
+ var colliderHeight = initializing ? targetHeight : height
55
+
56
+ if (offsetTop != null && scrollTop <= offsetTop) return 'top'
57
+ if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom'
58
+
59
+ return false
60
+ }
61
+
62
+ Affix.prototype.getPinnedOffset = function () {
63
+ if (this.pinnedOffset) return this.pinnedOffset
64
+ this.$element.removeClass(Affix.RESET).addClass('affix')
65
+ var scrollTop = this.$target.scrollTop()
66
+ var position = this.$element.offset()
67
+ return (this.pinnedOffset = position.top - scrollTop)
68
+ }
69
+
70
+ Affix.prototype.checkPositionWithEventLoop = function () {
71
+ setTimeout($.proxy(this.checkPosition, this), 1)
72
+ }
73
+
74
+ Affix.prototype.checkPosition = function () {
75
+ if (!this.$element.is(':visible')) return
76
+
77
+ var height = this.$element.height()
78
+ var offset = this.options.offset
79
+ var offsetTop = offset.top
80
+ var offsetBottom = offset.bottom
81
+ var scrollHeight = Math.max($(document).height(), $(document.body).height())
82
+
83
+ if (typeof offset != 'object') offsetBottom = offsetTop = offset
84
+ if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element)
85
+ if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
86
+
87
+ var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom)
88
+
89
+ if (this.affixed != affix) {
90
+ if (this.unpin != null) this.$element.css('top', '')
91
+
92
+ var affixType = 'affix' + (affix ? '-' + affix : '')
93
+ var e = $.Event(affixType + '.bs.affix')
94
+
95
+ this.$element.trigger(e)
96
+
97
+ if (e.isDefaultPrevented()) return
98
+
99
+ this.affixed = affix
100
+ this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
101
+
102
+ this.$element
103
+ .removeClass(Affix.RESET)
104
+ .addClass(affixType)
105
+ .trigger(affixType.replace('affix', 'affixed') + '.bs.affix')
106
+ }
107
+
108
+ if (affix == 'bottom') {
109
+ this.$element.offset({
110
+ top: scrollHeight - height - offsetBottom
111
+ })
112
+ }
113
+ }
114
+
115
+
116
+ // AFFIX PLUGIN DEFINITION
117
+ // =======================
118
+
119
+ function Plugin(option) {
120
+ return this.each(function () {
121
+ var $this = $(this)
122
+ var data = $this.data('bs.affix')
123
+ var options = typeof option == 'object' && option
124
+
125
+ if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
126
+ if (typeof option == 'string') data[option]()
127
+ })
128
+ }
129
+
130
+ var old = $.fn.affix
131
+
132
+ $.fn.affix = Plugin
133
+ $.fn.affix.Constructor = Affix
134
+
135
+
136
+ // AFFIX NO CONFLICT
137
+ // =================
138
+
139
+ $.fn.affix.noConflict = function () {
140
+ $.fn.affix = old
141
+ return this
142
+ }
143
+
144
+
145
+ // AFFIX DATA-API
146
+ // ==============
147
+
148
+ $(window).on('load', function () {
149
+ $('[data-spy="affix"]').each(function () {
150
+ var $spy = $(this)
151
+ var data = $spy.data()
152
+
153
+ data.offset = data.offset || {}
154
+
155
+ if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom
156
+ if (data.offsetTop != null) data.offset.top = data.offsetTop
157
+
158
+ Plugin.call($spy, data)
159
+ })
160
+ })
161
+
162
+ }(jQuery);
@@ -0,0 +1,94 @@
1
+ /* ========================================================================
2
+ * Bootstrap: alert.js v3.3.5
3
+ * http://getbootstrap.com/javascript/#alerts
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
+ // 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.3.5'
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
+ var $parent = $(selector)
35
+
36
+ if (e) e.preventDefault()
37
+
38
+ if (!$parent.length) {
39
+ $parent = $this.closest('.alert')
40
+ }
41
+
42
+ $parent.trigger(e = $.Event('close.bs.alert'))
43
+
44
+ if (e.isDefaultPrevented()) return
45
+
46
+ $parent.removeClass('in')
47
+
48
+ function removeElement() {
49
+ // detach from parent, fire event then clean up data
50
+ $parent.detach().trigger('closed.bs.alert').remove()
51
+ }
52
+
53
+ $.support.transition && $parent.hasClass('fade') ?
54
+ $parent
55
+ .one('bsTransitionEnd', removeElement)
56
+ .emulateTransitionEnd(Alert.TRANSITION_DURATION) :
57
+ removeElement()
58
+ }
59
+
60
+
61
+ // ALERT PLUGIN DEFINITION
62
+ // =======================
63
+
64
+ function Plugin(option) {
65
+ return this.each(function () {
66
+ var $this = $(this)
67
+ var data = $this.data('bs.alert')
68
+
69
+ if (!data) $this.data('bs.alert', (data = new Alert(this)))
70
+ if (typeof option == 'string') data[option].call($this)
71
+ })
72
+ }
73
+
74
+ var old = $.fn.alert
75
+
76
+ $.fn.alert = Plugin
77
+ $.fn.alert.Constructor = Alert
78
+
79
+
80
+ // ALERT NO CONFLICT
81
+ // =================
82
+
83
+ $.fn.alert.noConflict = function () {
84
+ $.fn.alert = old
85
+ return this
86
+ }
87
+
88
+
89
+ // ALERT DATA-API
90
+ // ==============
91
+
92
+ $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
93
+
94
+ }(jQuery);
@@ -0,0 +1,120 @@
1
+ /* ========================================================================
2
+ * Bootstrap: button.js v3.3.5
3
+ * http://getbootstrap.com/javascript/#buttons
4
+ * ========================================================================
5
+ * Copyright 2011-2015 Twitter, Inc.
6
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
7
+ * ======================================================================== */
8
+
9
+
10
+ +function ($) {
11
+ 'use strict';
12
+
13
+ // BUTTON PUBLIC CLASS DEFINITION
14
+ // ==============================
15
+
16
+ var Button = function (element, options) {
17
+ this.$element = $(element)
18
+ this.options = $.extend({}, Button.DEFAULTS, options)
19
+ this.isLoading = false
20
+ }
21
+
22
+ Button.VERSION = '3.3.5'
23
+
24
+ Button.DEFAULTS = {
25
+ loadingText: 'loading...'
26
+ }
27
+
28
+ Button.prototype.setState = function (state) {
29
+ var d = 'disabled'
30
+ var $el = this.$element
31
+ var val = $el.is('input') ? 'val' : 'html'
32
+ var data = $el.data()
33
+
34
+ state += 'Text'
35
+
36
+ if (data.resetText == null) $el.data('resetText', $el[val]())
37
+
38
+ // push to event loop to allow forms to submit
39
+ setTimeout($.proxy(function () {
40
+ $el[val](data[state] == null ? this.options[state] : data[state])
41
+
42
+ if (state == 'loadingText') {
43
+ this.isLoading = true
44
+ $el.addClass(d).attr(d, d)
45
+ } else if (this.isLoading) {
46
+ this.isLoading = false
47
+ $el.removeClass(d).removeAttr(d)
48
+ }
49
+ }, this), 0)
50
+ }
51
+
52
+ Button.prototype.toggle = function () {
53
+ var changed = true
54
+ var $parent = this.$element.closest('[data-toggle="buttons"]')
55
+
56
+ if ($parent.length) {
57
+ var $input = this.$element.find('input')
58
+ if ($input.prop('type') == 'radio') {
59
+ if ($input.prop('checked')) changed = false
60
+ $parent.find('.active').removeClass('active')
61
+ this.$element.addClass('active')
62
+ } else if ($input.prop('type') == 'checkbox') {
63
+ if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false
64
+ this.$element.toggleClass('active')
65
+ }
66
+ $input.prop('checked', this.$element.hasClass('active'))
67
+ if (changed) $input.trigger('change')
68
+ } else {
69
+ this.$element.attr('aria-pressed', !this.$element.hasClass('active'))
70
+ this.$element.toggleClass('active')
71
+ }
72
+ }
73
+
74
+
75
+ // BUTTON PLUGIN DEFINITION
76
+ // ========================
77
+
78
+ function Plugin(option) {
79
+ return this.each(function () {
80
+ var $this = $(this)
81
+ var data = $this.data('bs.button')
82
+ var options = typeof option == 'object' && option
83
+
84
+ if (!data) $this.data('bs.button', (data = new Button(this, options)))
85
+
86
+ if (option == 'toggle') data.toggle()
87
+ else if (option) data.setState(option)
88
+ })
89
+ }
90
+
91
+ var old = $.fn.button
92
+
93
+ $.fn.button = Plugin
94
+ $.fn.button.Constructor = Button
95
+
96
+
97
+ // BUTTON NO CONFLICT
98
+ // ==================
99
+
100
+ $.fn.button.noConflict = function () {
101
+ $.fn.button = old
102
+ return this
103
+ }
104
+
105
+
106
+ // BUTTON DATA-API
107
+ // ===============
108
+
109
+ $(document)
110
+ .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) {
111
+ var $btn = $(e.target)
112
+ if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
113
+ Plugin.call($btn, 'toggle')
114
+ if (!($(e.target).is('input[type="radio"]') || $(e.target).is('input[type="checkbox"]'))) e.preventDefault()
115
+ })
116
+ .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) {
117
+ $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type))
118
+ })
119
+
120
+ }(jQuery);
@@ -0,0 +1,237 @@
1
+ /* ========================================================================
2
+ * Bootstrap: carousel.js v3.3.5
3
+ * http://getbootstrap.com/javascript/#carousel
4
+ * ========================================================================
5
+ * Copyright 2011-2015 Twitter, Inc.
6
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
7
+ * ======================================================================== */
8
+
9
+
10
+ +function ($) {
11
+ 'use strict';
12
+
13
+ // CAROUSEL CLASS DEFINITION
14
+ // =========================
15
+
16
+ var Carousel = function (element, options) {
17
+ this.$element = $(element)
18
+ this.$indicators = this.$element.find('.carousel-indicators')
19
+ this.options = options
20
+ this.paused = null
21
+ this.sliding = null
22
+ this.interval = null
23
+ this.$active = null
24
+ this.$items = null
25
+
26
+ this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this))
27
+
28
+ this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element
29
+ .on('mouseenter.bs.carousel', $.proxy(this.pause, this))
30
+ .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
31
+ }
32
+
33
+ Carousel.VERSION = '3.3.5'
34
+
35
+ Carousel.TRANSITION_DURATION = 600
36
+
37
+ Carousel.DEFAULTS = {
38
+ interval: 5000,
39
+ pause: 'hover',
40
+ wrap: true,
41
+ keyboard: true
42
+ }
43
+
44
+ Carousel.prototype.keydown = function (e) {
45
+ if (/input|textarea/i.test(e.target.tagName)) return
46
+ switch (e.which) {
47
+ case 37: this.prev(); break
48
+ case 39: this.next(); break
49
+ default: return
50
+ }
51
+
52
+ e.preventDefault()
53
+ }
54
+
55
+ Carousel.prototype.cycle = function (e) {
56
+ e || (this.paused = false)
57
+
58
+ this.interval && clearInterval(this.interval)
59
+
60
+ this.options.interval
61
+ && !this.paused
62
+ && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
63
+
64
+ return this
65
+ }
66
+
67
+ Carousel.prototype.getItemIndex = function (item) {
68
+ this.$items = item.parent().children('.item')
69
+ return this.$items.index(item || this.$active)
70
+ }
71
+
72
+ Carousel.prototype.getItemForDirection = function (direction, active) {
73
+ var activeIndex = this.getItemIndex(active)
74
+ var willWrap = (direction == 'prev' && activeIndex === 0)
75
+ || (direction == 'next' && activeIndex == (this.$items.length - 1))
76
+ if (willWrap && !this.options.wrap) return active
77
+ var delta = direction == 'prev' ? -1 : 1
78
+ var itemIndex = (activeIndex + delta) % this.$items.length
79
+ return this.$items.eq(itemIndex)
80
+ }
81
+
82
+ Carousel.prototype.to = function (pos) {
83
+ var that = this
84
+ var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))
85
+
86
+ if (pos > (this.$items.length - 1) || pos < 0) return
87
+
88
+ if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid"
89
+ if (activeIndex == pos) return this.pause().cycle()
90
+
91
+ return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))
92
+ }
93
+
94
+ Carousel.prototype.pause = function (e) {
95
+ e || (this.paused = true)
96
+
97
+ if (this.$element.find('.next, .prev').length && $.support.transition) {
98
+ this.$element.trigger($.support.transition.end)
99
+ this.cycle(true)
100
+ }
101
+
102
+ this.interval = clearInterval(this.interval)
103
+
104
+ return this
105
+ }
106
+
107
+ Carousel.prototype.next = function () {
108
+ if (this.sliding) return
109
+ return this.slide('next')
110
+ }
111
+
112
+ Carousel.prototype.prev = function () {
113
+ if (this.sliding) return
114
+ return this.slide('prev')
115
+ }
116
+
117
+ Carousel.prototype.slide = function (type, next) {
118
+ var $active = this.$element.find('.item.active')
119
+ var $next = next || this.getItemForDirection(type, $active)
120
+ var isCycling = this.interval
121
+ var direction = type == 'next' ? 'left' : 'right'
122
+ var that = this
123
+
124
+ if ($next.hasClass('active')) return (this.sliding = false)
125
+
126
+ var relatedTarget = $next[0]
127
+ var slideEvent = $.Event('slide.bs.carousel', {
128
+ relatedTarget: relatedTarget,
129
+ direction: direction
130
+ })
131
+ this.$element.trigger(slideEvent)
132
+ if (slideEvent.isDefaultPrevented()) return
133
+
134
+ this.sliding = true
135
+
136
+ isCycling && this.pause()
137
+
138
+ if (this.$indicators.length) {
139
+ this.$indicators.find('.active').removeClass('active')
140
+ var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])
141
+ $nextIndicator && $nextIndicator.addClass('active')
142
+ }
143
+
144
+ var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid"
145
+ if ($.support.transition && this.$element.hasClass('slide')) {
146
+ $next.addClass(type)
147
+ $next[0].offsetWidth // force reflow
148
+ $active.addClass(direction)
149
+ $next.addClass(direction)
150
+ $active
151
+ .one('bsTransitionEnd', function () {
152
+ $next.removeClass([type, direction].join(' ')).addClass('active')
153
+ $active.removeClass(['active', direction].join(' '))
154
+ that.sliding = false
155
+ setTimeout(function () {
156
+ that.$element.trigger(slidEvent)
157
+ }, 0)
158
+ })
159
+ .emulateTransitionEnd(Carousel.TRANSITION_DURATION)
160
+ } else {
161
+ $active.removeClass('active')
162
+ $next.addClass('active')
163
+ this.sliding = false
164
+ this.$element.trigger(slidEvent)
165
+ }
166
+
167
+ isCycling && this.cycle()
168
+
169
+ return this
170
+ }
171
+
172
+
173
+ // CAROUSEL PLUGIN DEFINITION
174
+ // ==========================
175
+
176
+ function Plugin(option) {
177
+ return this.each(function () {
178
+ var $this = $(this)
179
+ var data = $this.data('bs.carousel')
180
+ var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
181
+ var action = typeof option == 'string' ? option : options.slide
182
+
183
+ if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
184
+ if (typeof option == 'number') data.to(option)
185
+ else if (action) data[action]()
186
+ else if (options.interval) data.pause().cycle()
187
+ })
188
+ }
189
+
190
+ var old = $.fn.carousel
191
+
192
+ $.fn.carousel = Plugin
193
+ $.fn.carousel.Constructor = Carousel
194
+
195
+
196
+ // CAROUSEL NO CONFLICT
197
+ // ====================
198
+
199
+ $.fn.carousel.noConflict = function () {
200
+ $.fn.carousel = old
201
+ return this
202
+ }
203
+
204
+
205
+ // CAROUSEL DATA-API
206
+ // =================
207
+
208
+ var clickHandler = function (e) {
209
+ var href
210
+ var $this = $(this)
211
+ var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
212
+ if (!$target.hasClass('carousel')) return
213
+ var options = $.extend({}, $target.data(), $this.data())
214
+ var slideIndex = $this.attr('data-slide-to')
215
+ if (slideIndex) options.interval = false
216
+
217
+ Plugin.call($target, options)
218
+
219
+ if (slideIndex) {
220
+ $target.data('bs.carousel').to(slideIndex)
221
+ }
222
+
223
+ e.preventDefault()
224
+ }
225
+
226
+ $(document)
227
+ .on('click.bs.carousel.data-api', '[data-slide]', clickHandler)
228
+ .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)
229
+
230
+ $(window).on('load', function () {
231
+ $('[data-ride="carousel"]').each(function () {
232
+ var $carousel = $(this)
233
+ Plugin.call($carousel, $carousel.data())
234
+ })
235
+ })
236
+
237
+ }(jQuery);