kanpachi 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/bower.json +1 -0
  4. data/kanpachi.gemspec +1 -1
  5. data/lib/kanpachi/doc/template/components/bootstrap/.bower.json +34 -0
  6. data/lib/kanpachi/doc/template/components/bootstrap/Gruntfile.js +421 -0
  7. data/lib/kanpachi/doc/template/components/bootstrap/LICENSE +21 -0
  8. data/lib/kanpachi/doc/template/components/bootstrap/README.md +173 -0
  9. data/lib/kanpachi/doc/template/components/bootstrap/bower.json +24 -0
  10. data/lib/kanpachi/doc/template/{source/stylesheets → components/bootstrap/dist/css}/bootstrap-theme.css +0 -0
  11. data/lib/kanpachi/doc/template/{source/stylesheets → components/bootstrap/dist/css}/bootstrap-theme.css.map +0 -0
  12. data/lib/kanpachi/doc/template/{source/stylesheets → components/bootstrap/dist/css}/bootstrap-theme.min.css +0 -0
  13. data/lib/kanpachi/doc/template/{source/stylesheets → components/bootstrap/dist/css}/bootstrap.css +0 -0
  14. data/lib/kanpachi/doc/template/{source/stylesheets → components/bootstrap/dist/css}/bootstrap.css.map +0 -0
  15. data/lib/kanpachi/doc/template/{source/stylesheets → components/bootstrap/dist/css}/bootstrap.min.css +0 -0
  16. data/lib/kanpachi/doc/template/components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot +0 -0
  17. data/lib/kanpachi/doc/template/components/bootstrap/dist/fonts/glyphicons-halflings-regular.svg +229 -0
  18. data/lib/kanpachi/doc/template/components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
  19. data/lib/kanpachi/doc/template/components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff +0 -0
  20. data/lib/kanpachi/doc/template/{source/javascripts → components/bootstrap/dist/js}/bootstrap.js +0 -0
  21. data/lib/kanpachi/doc/template/{source/javascripts → components/bootstrap/dist/js}/bootstrap.min.js +0 -0
  22. data/lib/kanpachi/doc/template/components/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
  23. data/lib/kanpachi/doc/template/components/bootstrap/fonts/glyphicons-halflings-regular.svg +229 -0
  24. data/lib/kanpachi/doc/template/components/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
  25. data/lib/kanpachi/doc/template/components/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
  26. data/lib/kanpachi/doc/template/components/bootstrap/grunt/bs-glyphicons-data-generator.js +34 -0
  27. data/lib/kanpachi/doc/template/components/bootstrap/grunt/bs-lessdoc-parser.js +236 -0
  28. data/lib/kanpachi/doc/template/components/bootstrap/grunt/bs-raw-files-generator.js +31 -0
  29. data/lib/kanpachi/doc/template/components/bootstrap/grunt/shrinkwrap.js +28 -0
  30. data/lib/kanpachi/doc/template/components/bootstrap/js/affix.js +137 -0
  31. data/lib/kanpachi/doc/template/components/bootstrap/js/alert.js +88 -0
  32. data/lib/kanpachi/doc/template/components/bootstrap/js/button.js +107 -0
  33. data/lib/kanpachi/doc/template/components/bootstrap/js/carousel.js +205 -0
  34. data/lib/kanpachi/doc/template/components/bootstrap/js/collapse.js +170 -0
  35. data/lib/kanpachi/doc/template/components/bootstrap/js/dropdown.js +147 -0
  36. data/lib/kanpachi/doc/template/components/bootstrap/js/modal.js +243 -0
  37. data/lib/kanpachi/doc/template/components/bootstrap/js/popover.js +110 -0
  38. data/lib/kanpachi/doc/template/components/bootstrap/js/scrollspy.js +153 -0
  39. data/lib/kanpachi/doc/template/components/bootstrap/js/tab.js +125 -0
  40. data/lib/kanpachi/doc/template/components/bootstrap/js/tooltip.js +399 -0
  41. data/lib/kanpachi/doc/template/components/bootstrap/js/transition.js +48 -0
  42. data/lib/kanpachi/doc/template/components/bootstrap/less/alerts.less +67 -0
  43. data/lib/kanpachi/doc/template/components/bootstrap/less/badges.less +55 -0
  44. data/lib/kanpachi/doc/template/components/bootstrap/less/bootstrap.less +49 -0
  45. data/lib/kanpachi/doc/template/components/bootstrap/less/breadcrumbs.less +26 -0
  46. data/lib/kanpachi/doc/template/components/bootstrap/less/button-groups.less +226 -0
  47. data/lib/kanpachi/doc/template/components/bootstrap/less/buttons.less +159 -0
  48. data/lib/kanpachi/doc/template/components/bootstrap/less/carousel.less +232 -0
  49. data/lib/kanpachi/doc/template/components/bootstrap/less/close.less +33 -0
  50. data/lib/kanpachi/doc/template/components/bootstrap/less/code.less +63 -0
  51. data/lib/kanpachi/doc/template/components/bootstrap/less/component-animations.less +29 -0
  52. data/lib/kanpachi/doc/template/components/bootstrap/less/dropdowns.less +213 -0
  53. data/lib/kanpachi/doc/template/components/bootstrap/less/forms.less +438 -0
  54. data/lib/kanpachi/doc/template/components/bootstrap/less/glyphicons.less +233 -0
  55. data/lib/kanpachi/doc/template/components/bootstrap/less/grid.less +84 -0
  56. data/lib/kanpachi/doc/template/components/bootstrap/less/input-groups.less +162 -0
  57. data/lib/kanpachi/doc/template/components/bootstrap/less/jumbotron.less +44 -0
  58. data/lib/kanpachi/doc/template/components/bootstrap/less/labels.less +64 -0
  59. data/lib/kanpachi/doc/template/components/bootstrap/less/list-group.less +110 -0
  60. data/lib/kanpachi/doc/template/components/bootstrap/less/media.less +56 -0
  61. data/lib/kanpachi/doc/template/components/bootstrap/less/mixins.less +929 -0
  62. data/lib/kanpachi/doc/template/components/bootstrap/less/modals.less +139 -0
  63. data/lib/kanpachi/doc/template/components/bootstrap/less/navbar.less +616 -0
  64. data/lib/kanpachi/doc/template/components/bootstrap/less/navs.less +242 -0
  65. data/lib/kanpachi/doc/template/components/bootstrap/less/normalize.less +423 -0
  66. data/lib/kanpachi/doc/template/components/bootstrap/less/pager.less +55 -0
  67. data/lib/kanpachi/doc/template/components/bootstrap/less/pagination.less +88 -0
  68. data/lib/kanpachi/doc/template/components/bootstrap/less/panels.less +241 -0
  69. data/lib/kanpachi/doc/template/components/bootstrap/less/popovers.less +133 -0
  70. data/lib/kanpachi/doc/template/components/bootstrap/less/print.less +101 -0
  71. data/lib/kanpachi/doc/template/components/bootstrap/less/progress-bars.less +80 -0
  72. data/lib/kanpachi/doc/template/components/bootstrap/less/responsive-utilities.less +92 -0
  73. data/lib/kanpachi/doc/template/components/bootstrap/less/scaffolding.less +134 -0
  74. data/lib/kanpachi/doc/template/components/bootstrap/less/tables.less +233 -0
  75. data/lib/kanpachi/doc/template/components/bootstrap/less/theme.less +247 -0
  76. data/lib/kanpachi/doc/template/components/bootstrap/less/thumbnails.less +36 -0
  77. data/lib/kanpachi/doc/template/components/bootstrap/less/tooltip.less +95 -0
  78. data/lib/kanpachi/doc/template/components/bootstrap/less/type.less +293 -0
  79. data/lib/kanpachi/doc/template/components/bootstrap/less/utilities.less +56 -0
  80. data/lib/kanpachi/doc/template/components/bootstrap/less/variables.less +829 -0
  81. data/lib/kanpachi/doc/template/components/bootstrap/less/wells.less +29 -0
  82. data/lib/kanpachi/doc/template/components/bootstrap/package.json +70 -0
  83. data/lib/kanpachi/doc/template/components/bootstrap/test-infra/README.md +100 -0
  84. data/lib/kanpachi/doc/template/components/bootstrap/test-infra/npm-shrinkwrap.canonical.json +1 -0
  85. data/lib/kanpachi/doc/template/components/bootstrap/test-infra/requirements.txt +1 -0
  86. data/lib/kanpachi/doc/template/components/bootstrap/test-infra/s3_cache.py +107 -0
  87. data/lib/kanpachi/doc/template/components/bootstrap/test-infra/sauce_browsers.yml +83 -0
  88. data/lib/kanpachi/doc/template/components/bootstrap/test-infra/uncached-npm-install.sh +4 -0
  89. data/lib/kanpachi/doc/template/components/html5shiv/.bower.json +6 -7
  90. data/lib/kanpachi/doc/template/components/html5shiv/Gruntfile.js +61 -0
  91. data/lib/kanpachi/doc/template/components/html5shiv/bower.json +15 -0
  92. data/lib/kanpachi/doc/template/components/html5shiv/dist/html5shiv-printshiv.js +498 -10
  93. data/lib/kanpachi/doc/template/components/html5shiv/dist/html5shiv-printshiv.min.js +4 -0
  94. data/lib/kanpachi/doc/template/components/html5shiv/dist/html5shiv.js +300 -7
  95. data/lib/kanpachi/doc/template/components/html5shiv/dist/html5shiv.min.js +4 -0
  96. data/lib/kanpachi/doc/template/components/html5shiv/package.json +16 -0
  97. data/lib/kanpachi/doc/template/components/html5shiv/readme.md +3 -3
  98. data/lib/kanpachi/doc/template/source/javascripts/all.coffee +1 -1
  99. data/lib/kanpachi/doc/template/source/layouts/layout.slim +1 -1
  100. data/lib/kanpachi/response.rb +13 -5
  101. data/lib/kanpachi/version.rb +1 -1
  102. metadata +93 -12
@@ -0,0 +1,110 @@
1
+ /* ========================================================================
2
+ * Bootstrap: popover.js v3.1.1
3
+ * http://getbootstrap.com/javascript/#popovers
4
+ * ========================================================================
5
+ * Copyright 2011-2014 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.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
23
+ placement: 'right',
24
+ trigger: 'click',
25
+ content: '',
26
+ template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
27
+ })
28
+
29
+
30
+ // NOTE: POPOVER EXTENDS tooltip.js
31
+ // ================================
32
+
33
+ Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
34
+
35
+ Popover.prototype.constructor = Popover
36
+
37
+ Popover.prototype.getDefaults = function () {
38
+ return Popover.DEFAULTS
39
+ }
40
+
41
+ Popover.prototype.setContent = function () {
42
+ var $tip = this.tip()
43
+ var title = this.getTitle()
44
+ var content = this.getContent()
45
+
46
+ $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
47
+ $tip.find('.popover-content')[ // we use append for html objects to maintain js events
48
+ this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
49
+ ](content)
50
+
51
+ $tip.removeClass('fade top bottom left right in')
52
+
53
+ // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
54
+ // this manually by checking the contents.
55
+ if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
56
+ }
57
+
58
+ Popover.prototype.hasContent = function () {
59
+ return this.getTitle() || this.getContent()
60
+ }
61
+
62
+ Popover.prototype.getContent = function () {
63
+ var $e = this.$element
64
+ var o = this.options
65
+
66
+ return $e.attr('data-content')
67
+ || (typeof o.content == 'function' ?
68
+ o.content.call($e[0]) :
69
+ o.content)
70
+ }
71
+
72
+ Popover.prototype.arrow = function () {
73
+ return this.$arrow = this.$arrow || this.tip().find('.arrow')
74
+ }
75
+
76
+ Popover.prototype.tip = function () {
77
+ if (!this.$tip) this.$tip = $(this.options.template)
78
+ return this.$tip
79
+ }
80
+
81
+
82
+ // POPOVER PLUGIN DEFINITION
83
+ // =========================
84
+
85
+ var old = $.fn.popover
86
+
87
+ $.fn.popover = function (option) {
88
+ return this.each(function () {
89
+ var $this = $(this)
90
+ var data = $this.data('bs.popover')
91
+ var options = typeof option == 'object' && option
92
+
93
+ if (!data && option == 'destroy') return
94
+ if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
95
+ if (typeof option == 'string') data[option]()
96
+ })
97
+ }
98
+
99
+ $.fn.popover.Constructor = Popover
100
+
101
+
102
+ // POPOVER NO CONFLICT
103
+ // ===================
104
+
105
+ $.fn.popover.noConflict = function () {
106
+ $.fn.popover = old
107
+ return this
108
+ }
109
+
110
+ }(jQuery);
@@ -0,0 +1,153 @@
1
+ /* ========================================================================
2
+ * Bootstrap: scrollspy.js v3.1.1
3
+ * http://getbootstrap.com/javascript/#scrollspy
4
+ * ========================================================================
5
+ * Copyright 2011-2014 Twitter, Inc.
6
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
7
+ * ======================================================================== */
8
+
9
+
10
+ +function ($) {
11
+ 'use strict';
12
+
13
+ // SCROLLSPY CLASS DEFINITION
14
+ // ==========================
15
+
16
+ function ScrollSpy(element, options) {
17
+ var href
18
+ var process = $.proxy(this.process, this)
19
+
20
+ this.$element = $(element).is('body') ? $(window) : $(element)
21
+ this.$body = $('body')
22
+ this.$scrollElement = this.$element.on('scroll.bs.scroll-spy.data-api', process)
23
+ this.options = $.extend({}, ScrollSpy.DEFAULTS, options)
24
+ this.selector = (this.options.target
25
+ || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
26
+ || '') + ' .nav li > a'
27
+ this.offsets = $([])
28
+ this.targets = $([])
29
+ this.activeTarget = null
30
+
31
+ this.refresh()
32
+ this.process()
33
+ }
34
+
35
+ ScrollSpy.DEFAULTS = {
36
+ offset: 10
37
+ }
38
+
39
+ ScrollSpy.prototype.refresh = function () {
40
+ var offsetMethod = this.$element[0] == window ? 'offset' : 'position'
41
+
42
+ this.offsets = $([])
43
+ this.targets = $([])
44
+
45
+ var self = this
46
+ var $targets = this.$body
47
+ .find(this.selector)
48
+ .map(function () {
49
+ var $el = $(this)
50
+ var href = $el.data('target') || $el.attr('href')
51
+ var $href = /^#./.test(href) && $(href)
52
+
53
+ return ($href
54
+ && $href.length
55
+ && $href.is(':visible')
56
+ && [[ $href[offsetMethod]().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]]) || null
57
+ })
58
+ .sort(function (a, b) { return a[0] - b[0] })
59
+ .each(function () {
60
+ self.offsets.push(this[0])
61
+ self.targets.push(this[1])
62
+ })
63
+ }
64
+
65
+ ScrollSpy.prototype.process = function () {
66
+ var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
67
+ var scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight
68
+ var maxScroll = scrollHeight - this.$scrollElement.height()
69
+ var offsets = this.offsets
70
+ var targets = this.targets
71
+ var activeTarget = this.activeTarget
72
+ var i
73
+
74
+ if (scrollTop >= maxScroll) {
75
+ return activeTarget != (i = targets.last()[0]) && this.activate(i)
76
+ }
77
+
78
+ if (activeTarget && scrollTop <= offsets[0]) {
79
+ return activeTarget != (i = targets[0]) && this.activate(i)
80
+ }
81
+
82
+ for (i = offsets.length; i--;) {
83
+ activeTarget != targets[i]
84
+ && scrollTop >= offsets[i]
85
+ && (!offsets[i + 1] || scrollTop <= offsets[i + 1])
86
+ && this.activate( targets[i] )
87
+ }
88
+ }
89
+
90
+ ScrollSpy.prototype.activate = function (target) {
91
+ this.activeTarget = target
92
+
93
+ $(this.selector)
94
+ .parentsUntil(this.options.target, '.active')
95
+ .removeClass('active')
96
+
97
+ var selector = this.selector +
98
+ '[data-target="' + target + '"],' +
99
+ this.selector + '[href="' + target + '"]'
100
+
101
+ var active = $(selector)
102
+ .parents('li')
103
+ .addClass('active')
104
+
105
+ if (active.parent('.dropdown-menu').length) {
106
+ active = active
107
+ .closest('li.dropdown')
108
+ .addClass('active')
109
+ }
110
+
111
+ active.trigger('activate.bs.scrollspy')
112
+ }
113
+
114
+
115
+ // SCROLLSPY PLUGIN DEFINITION
116
+ // ===========================
117
+
118
+ var old = $.fn.scrollspy
119
+
120
+ $.fn.scrollspy = function (option) {
121
+ return this.each(function () {
122
+ var $this = $(this)
123
+ var data = $this.data('bs.scrollspy')
124
+ var options = typeof option == 'object' && option
125
+
126
+ if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
127
+ if (typeof option == 'string') data[option]()
128
+ })
129
+ }
130
+
131
+ $.fn.scrollspy.Constructor = ScrollSpy
132
+
133
+
134
+ // SCROLLSPY NO CONFLICT
135
+ // =====================
136
+
137
+ $.fn.scrollspy.noConflict = function () {
138
+ $.fn.scrollspy = old
139
+ return this
140
+ }
141
+
142
+
143
+ // SCROLLSPY DATA-API
144
+ // ==================
145
+
146
+ $(window).on('load', function () {
147
+ $('[data-spy="scroll"]').each(function () {
148
+ var $spy = $(this)
149
+ $spy.scrollspy($spy.data())
150
+ })
151
+ })
152
+
153
+ }(jQuery);
@@ -0,0 +1,125 @@
1
+ /* ========================================================================
2
+ * Bootstrap: tab.js v3.1.1
3
+ * http://getbootstrap.com/javascript/#tabs
4
+ * ========================================================================
5
+ * Copyright 2011-2014 Twitter, Inc.
6
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
7
+ * ======================================================================== */
8
+
9
+
10
+ +function ($) {
11
+ 'use strict';
12
+
13
+ // TAB CLASS DEFINITION
14
+ // ====================
15
+
16
+ var Tab = function (element) {
17
+ this.element = $(element)
18
+ }
19
+
20
+ Tab.prototype.show = function () {
21
+ var $this = this.element
22
+ var $ul = $this.closest('ul:not(.dropdown-menu)')
23
+ var selector = $this.data('target')
24
+
25
+ if (!selector) {
26
+ selector = $this.attr('href')
27
+ selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
28
+ }
29
+
30
+ if ($this.parent('li').hasClass('active')) return
31
+
32
+ var previous = $ul.find('.active:last a')[0]
33
+ var e = $.Event('show.bs.tab', {
34
+ relatedTarget: previous
35
+ })
36
+
37
+ $this.trigger(e)
38
+
39
+ if (e.isDefaultPrevented()) return
40
+
41
+ var $target = $(selector)
42
+
43
+ this.activate($this.parent('li'), $ul)
44
+ this.activate($target, $target.parent(), function () {
45
+ $this.trigger({
46
+ type: 'shown.bs.tab',
47
+ relatedTarget: previous
48
+ })
49
+ })
50
+ }
51
+
52
+ Tab.prototype.activate = function (element, container, callback) {
53
+ var $active = container.find('> .active')
54
+ var transition = callback
55
+ && $.support.transition
56
+ && $active.hasClass('fade')
57
+
58
+ function next() {
59
+ $active
60
+ .removeClass('active')
61
+ .find('> .dropdown-menu > .active')
62
+ .removeClass('active')
63
+
64
+ element.addClass('active')
65
+
66
+ if (transition) {
67
+ element[0].offsetWidth // reflow for transition
68
+ element.addClass('in')
69
+ } else {
70
+ element.removeClass('fade')
71
+ }
72
+
73
+ if (element.parent('.dropdown-menu')) {
74
+ element.closest('li.dropdown').addClass('active')
75
+ }
76
+
77
+ callback && callback()
78
+ }
79
+
80
+ transition ?
81
+ $active
82
+ .one($.support.transition.end, next)
83
+ .emulateTransitionEnd(150) :
84
+ next()
85
+
86
+ $active.removeClass('in')
87
+ }
88
+
89
+
90
+ // TAB PLUGIN DEFINITION
91
+ // =====================
92
+
93
+ var old = $.fn.tab
94
+
95
+ $.fn.tab = function ( option ) {
96
+ return this.each(function () {
97
+ var $this = $(this)
98
+ var data = $this.data('bs.tab')
99
+
100
+ if (!data) $this.data('bs.tab', (data = new Tab(this)))
101
+ if (typeof option == 'string') data[option]()
102
+ })
103
+ }
104
+
105
+ $.fn.tab.Constructor = Tab
106
+
107
+
108
+ // TAB NO CONFLICT
109
+ // ===============
110
+
111
+ $.fn.tab.noConflict = function () {
112
+ $.fn.tab = old
113
+ return this
114
+ }
115
+
116
+
117
+ // TAB DATA-API
118
+ // ============
119
+
120
+ $(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
121
+ e.preventDefault()
122
+ $(this).tab('show')
123
+ })
124
+
125
+ }(jQuery);
@@ -0,0 +1,399 @@
1
+ /* ========================================================================
2
+ * Bootstrap: tooltip.js v3.1.1
3
+ * http://getbootstrap.com/javascript/#tooltip
4
+ * Inspired by the original jQuery.tipsy by Jason Frame
5
+ * ========================================================================
6
+ * Copyright 2011-2014 Twitter, Inc.
7
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
8
+ * ======================================================================== */
9
+
10
+
11
+ +function ($) {
12
+ 'use strict';
13
+
14
+ // TOOLTIP PUBLIC CLASS DEFINITION
15
+ // ===============================
16
+
17
+ var Tooltip = function (element, options) {
18
+ this.type =
19
+ this.options =
20
+ this.enabled =
21
+ this.timeout =
22
+ this.hoverState =
23
+ this.$element = null
24
+
25
+ this.init('tooltip', element, options)
26
+ }
27
+
28
+ Tooltip.DEFAULTS = {
29
+ animation: true,
30
+ placement: 'top',
31
+ selector: false,
32
+ template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
33
+ trigger: 'hover focus',
34
+ title: '',
35
+ delay: 0,
36
+ html: false,
37
+ container: false
38
+ }
39
+
40
+ Tooltip.prototype.init = function (type, element, options) {
41
+ this.enabled = true
42
+ this.type = type
43
+ this.$element = $(element)
44
+ this.options = this.getOptions(options)
45
+
46
+ var triggers = this.options.trigger.split(' ')
47
+
48
+ for (var i = triggers.length; i--;) {
49
+ var trigger = triggers[i]
50
+
51
+ if (trigger == 'click') {
52
+ this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
53
+ } else if (trigger != 'manual') {
54
+ var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin'
55
+ var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
56
+
57
+ this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
58
+ this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
59
+ }
60
+ }
61
+
62
+ this.options.selector ?
63
+ (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
64
+ this.fixTitle()
65
+ }
66
+
67
+ Tooltip.prototype.getDefaults = function () {
68
+ return Tooltip.DEFAULTS
69
+ }
70
+
71
+ Tooltip.prototype.getOptions = function (options) {
72
+ options = $.extend({}, this.getDefaults(), this.$element.data(), options)
73
+
74
+ if (options.delay && typeof options.delay == 'number') {
75
+ options.delay = {
76
+ show: options.delay,
77
+ hide: options.delay
78
+ }
79
+ }
80
+
81
+ return options
82
+ }
83
+
84
+ Tooltip.prototype.getDelegateOptions = function () {
85
+ var options = {}
86
+ var defaults = this.getDefaults()
87
+
88
+ this._options && $.each(this._options, function (key, value) {
89
+ if (defaults[key] != value) options[key] = value
90
+ })
91
+
92
+ return options
93
+ }
94
+
95
+ Tooltip.prototype.enter = function (obj) {
96
+ var self = obj instanceof this.constructor ?
97
+ obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
98
+
99
+ clearTimeout(self.timeout)
100
+
101
+ self.hoverState = 'in'
102
+
103
+ if (!self.options.delay || !self.options.delay.show) return self.show()
104
+
105
+ self.timeout = setTimeout(function () {
106
+ if (self.hoverState == 'in') self.show()
107
+ }, self.options.delay.show)
108
+ }
109
+
110
+ Tooltip.prototype.leave = function (obj) {
111
+ var self = obj instanceof this.constructor ?
112
+ obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
113
+
114
+ clearTimeout(self.timeout)
115
+
116
+ self.hoverState = 'out'
117
+
118
+ if (!self.options.delay || !self.options.delay.hide) return self.hide()
119
+
120
+ self.timeout = setTimeout(function () {
121
+ if (self.hoverState == 'out') self.hide()
122
+ }, self.options.delay.hide)
123
+ }
124
+
125
+ Tooltip.prototype.show = function () {
126
+ var e = $.Event('show.bs.' + this.type)
127
+
128
+ if (this.hasContent() && this.enabled) {
129
+ this.$element.trigger(e)
130
+
131
+ if (e.isDefaultPrevented()) return
132
+ var that = this;
133
+
134
+ var $tip = this.tip()
135
+
136
+ this.setContent()
137
+
138
+ if (this.options.animation) $tip.addClass('fade')
139
+
140
+ var placement = typeof this.options.placement == 'function' ?
141
+ this.options.placement.call(this, $tip[0], this.$element[0]) :
142
+ this.options.placement
143
+
144
+ var autoToken = /\s?auto?\s?/i
145
+ var autoPlace = autoToken.test(placement)
146
+ if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
147
+
148
+ $tip
149
+ .detach()
150
+ .css({ top: 0, left: 0, display: 'block' })
151
+ .addClass(placement)
152
+
153
+ this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
154
+
155
+ var pos = this.getPosition()
156
+ var actualWidth = $tip[0].offsetWidth
157
+ var actualHeight = $tip[0].offsetHeight
158
+
159
+ if (autoPlace) {
160
+ var $parent = this.$element.parent()
161
+
162
+ var orgPlacement = placement
163
+ var docScroll = document.documentElement.scrollTop || document.body.scrollTop
164
+ var parentWidth = this.options.container == 'body' ? window.innerWidth : $parent.outerWidth()
165
+ var parentHeight = this.options.container == 'body' ? window.innerHeight : $parent.outerHeight()
166
+ var parentLeft = this.options.container == 'body' ? 0 : $parent.offset().left
167
+
168
+ placement = placement == 'bottom' && pos.top + pos.height + actualHeight - docScroll > parentHeight ? 'top' :
169
+ placement == 'top' && pos.top - docScroll - actualHeight < 0 ? 'bottom' :
170
+ placement == 'right' && pos.right + actualWidth > parentWidth ? 'left' :
171
+ placement == 'left' && pos.left - actualWidth < parentLeft ? 'right' :
172
+ placement
173
+
174
+ $tip
175
+ .removeClass(orgPlacement)
176
+ .addClass(placement)
177
+ }
178
+
179
+ var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
180
+
181
+ this.applyPlacement(calculatedOffset, placement)
182
+ this.hoverState = null
183
+
184
+ var complete = function() {
185
+ that.$element.trigger('shown.bs.' + that.type)
186
+ }
187
+
188
+ $.support.transition && this.$tip.hasClass('fade') ?
189
+ $tip
190
+ .one($.support.transition.end, complete)
191
+ .emulateTransitionEnd(150) :
192
+ complete()
193
+ }
194
+ }
195
+
196
+ Tooltip.prototype.applyPlacement = function (offset, placement) {
197
+ var replace
198
+ var $tip = this.tip()
199
+ var width = $tip[0].offsetWidth
200
+ var height = $tip[0].offsetHeight
201
+
202
+ // manually read margins because getBoundingClientRect includes difference
203
+ var marginTop = parseInt($tip.css('margin-top'), 10)
204
+ var marginLeft = parseInt($tip.css('margin-left'), 10)
205
+
206
+ // we must check for NaN for ie 8/9
207
+ if (isNaN(marginTop)) marginTop = 0
208
+ if (isNaN(marginLeft)) marginLeft = 0
209
+
210
+ offset.top = offset.top + marginTop
211
+ offset.left = offset.left + marginLeft
212
+
213
+ // $.fn.offset doesn't round pixel values
214
+ // so we use setOffset directly with our own function B-0
215
+ $.offset.setOffset($tip[0], $.extend({
216
+ using: function (props) {
217
+ $tip.css({
218
+ top: Math.round(props.top),
219
+ left: Math.round(props.left)
220
+ })
221
+ }
222
+ }, offset), 0)
223
+
224
+ $tip.addClass('in')
225
+
226
+ // check to see if placing tip in new offset caused the tip to resize itself
227
+ var actualWidth = $tip[0].offsetWidth
228
+ var actualHeight = $tip[0].offsetHeight
229
+
230
+ if (placement == 'top' && actualHeight != height) {
231
+ replace = true
232
+ offset.top = offset.top + height - actualHeight
233
+ }
234
+
235
+ if (/bottom|top/.test(placement)) {
236
+ var delta = 0
237
+
238
+ if (offset.left < 0) {
239
+ delta = offset.left * -2
240
+ offset.left = 0
241
+
242
+ $tip.offset(offset)
243
+
244
+ actualWidth = $tip[0].offsetWidth
245
+ actualHeight = $tip[0].offsetHeight
246
+ }
247
+
248
+ this.replaceArrow(delta - width + actualWidth, actualWidth, 'left')
249
+ } else {
250
+ this.replaceArrow(actualHeight - height, actualHeight, 'top')
251
+ }
252
+
253
+ if (replace) $tip.offset(offset)
254
+ }
255
+
256
+ Tooltip.prototype.replaceArrow = function (delta, dimension, position) {
257
+ this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + '%') : '')
258
+ }
259
+
260
+ Tooltip.prototype.setContent = function () {
261
+ var $tip = this.tip()
262
+ var title = this.getTitle()
263
+
264
+ $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
265
+ $tip.removeClass('fade in top bottom left right')
266
+ }
267
+
268
+ Tooltip.prototype.hide = function () {
269
+ var that = this
270
+ var $tip = this.tip()
271
+ var e = $.Event('hide.bs.' + this.type)
272
+
273
+ function complete() {
274
+ if (that.hoverState != 'in') $tip.detach()
275
+ that.$element.trigger('hidden.bs.' + that.type)
276
+ }
277
+
278
+ this.$element.trigger(e)
279
+
280
+ if (e.isDefaultPrevented()) return
281
+
282
+ $tip.removeClass('in')
283
+
284
+ $.support.transition && this.$tip.hasClass('fade') ?
285
+ $tip
286
+ .one($.support.transition.end, complete)
287
+ .emulateTransitionEnd(150) :
288
+ complete()
289
+
290
+ this.hoverState = null
291
+
292
+ return this
293
+ }
294
+
295
+ Tooltip.prototype.fixTitle = function () {
296
+ var $e = this.$element
297
+ if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
298
+ $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
299
+ }
300
+ }
301
+
302
+ Tooltip.prototype.hasContent = function () {
303
+ return this.getTitle()
304
+ }
305
+
306
+ Tooltip.prototype.getPosition = function () {
307
+ var el = this.$element[0]
308
+ return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : {
309
+ width: el.offsetWidth,
310
+ height: el.offsetHeight
311
+ }, this.$element.offset())
312
+ }
313
+
314
+ Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
315
+ return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } :
316
+ placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
317
+ placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
318
+ /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
319
+ }
320
+
321
+ Tooltip.prototype.getTitle = function () {
322
+ var title
323
+ var $e = this.$element
324
+ var o = this.options
325
+
326
+ title = $e.attr('data-original-title')
327
+ || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
328
+
329
+ return title
330
+ }
331
+
332
+ Tooltip.prototype.tip = function () {
333
+ return this.$tip = this.$tip || $(this.options.template)
334
+ }
335
+
336
+ Tooltip.prototype.arrow = function () {
337
+ return this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')
338
+ }
339
+
340
+ Tooltip.prototype.validate = function () {
341
+ if (!this.$element[0].parentNode) {
342
+ this.hide()
343
+ this.$element = null
344
+ this.options = null
345
+ }
346
+ }
347
+
348
+ Tooltip.prototype.enable = function () {
349
+ this.enabled = true
350
+ }
351
+
352
+ Tooltip.prototype.disable = function () {
353
+ this.enabled = false
354
+ }
355
+
356
+ Tooltip.prototype.toggleEnabled = function () {
357
+ this.enabled = !this.enabled
358
+ }
359
+
360
+ Tooltip.prototype.toggle = function (e) {
361
+ var self = e ? $(e.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) : this
362
+ self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
363
+ }
364
+
365
+ Tooltip.prototype.destroy = function () {
366
+ clearTimeout(this.timeout)
367
+ this.hide().$element.off('.' + this.type).removeData('bs.' + this.type)
368
+ }
369
+
370
+
371
+ // TOOLTIP PLUGIN DEFINITION
372
+ // =========================
373
+
374
+ var old = $.fn.tooltip
375
+
376
+ $.fn.tooltip = function (option) {
377
+ return this.each(function () {
378
+ var $this = $(this)
379
+ var data = $this.data('bs.tooltip')
380
+ var options = typeof option == 'object' && option
381
+
382
+ if (!data && option == 'destroy') return
383
+ if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
384
+ if (typeof option == 'string') data[option]()
385
+ })
386
+ }
387
+
388
+ $.fn.tooltip.Constructor = Tooltip
389
+
390
+
391
+ // TOOLTIP NO CONFLICT
392
+ // ===================
393
+
394
+ $.fn.tooltip.noConflict = function () {
395
+ $.fn.tooltip = old
396
+ return this
397
+ }
398
+
399
+ }(jQuery);