summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/static/js
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static/js')
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/bootstrap.js2363
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/bootstrap.min.js11
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/customrecipe.js4
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/importlayer.js11
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/layerDepsModal.js4
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/layerdetails.js67
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/libtoaster.js18
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/newcustomimage_modal.js76
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/projectpage.js8
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/table.js83
10 files changed, 2529 insertions, 116 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/bootstrap.js b/bitbake/lib/toaster/toastergui/static/js/bootstrap.js
new file mode 100644
index 0000000000..d47d640feb
--- /dev/null
+++ b/bitbake/lib/toaster/toastergui/static/js/bootstrap.js
@@ -0,0 +1,2363 @@
1/*!
2 * Bootstrap v3.3.6 (http://getbootstrap.com)
3 * Copyright 2011-2016 Twitter, Inc.
4 * Licensed under the MIT license
5 */
6
7if (typeof jQuery === 'undefined') {
8 throw new Error('Bootstrap\'s JavaScript requires jQuery')
9}
10
11+function ($) {
12 'use strict';
13 var version = $.fn.jquery.split(' ')[0].split('.')
14 if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] > 2)) {
15 throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3')
16 }
17}(jQuery);
18
19/* ========================================================================
20 * Bootstrap: transition.js v3.3.6
21 * http://getbootstrap.com/javascript/#transitions
22 * ========================================================================
23 * Copyright 2011-2015 Twitter, Inc.
24 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
25 * ======================================================================== */
26
27
28+function ($) {
29 'use strict';
30
31 // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
32 // ============================================================
33
34 function transitionEnd() {
35 var el = document.createElement('bootstrap')
36
37 var transEndEventNames = {
38 WebkitTransition : 'webkitTransitionEnd',
39 MozTransition : 'transitionend',
40 OTransition : 'oTransitionEnd otransitionend',
41 transition : 'transitionend'
42 }
43
44 for (var name in transEndEventNames) {
45 if (el.style[name] !== undefined) {
46 return { end: transEndEventNames[name] }
47 }
48 }
49
50 return false // explicit for ie8 ( ._.)
51 }
52
53 // http://blog.alexmaccaw.com/css-transitions
54 $.fn.emulateTransitionEnd = function (duration) {
55 var called = false
56 var $el = this
57 $(this).one('bsTransitionEnd', function () { called = true })
58 var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
59 setTimeout(callback, duration)
60 return this
61 }
62
63 $(function () {
64 $.support.transition = transitionEnd()
65
66 if (!$.support.transition) return
67
68 $.event.special.bsTransitionEnd = {
69 bindType: $.support.transition.end,
70 delegateType: $.support.transition.end,
71 handle: function (e) {
72 if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
73 }
74 }
75 })
76
77}(jQuery);
78
79/* ========================================================================
80 * Bootstrap: alert.js v3.3.6
81 * http://getbootstrap.com/javascript/#alerts
82 * ========================================================================
83 * Copyright 2011-2015 Twitter, Inc.
84 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
85 * ======================================================================== */
86
87
88+function ($) {
89 'use strict';
90
91 // ALERT CLASS DEFINITION
92 // ======================
93
94 var dismiss = '[data-dismiss="alert"]'
95 var Alert = function (el) {
96 $(el).on('click', dismiss, this.close)
97 }
98
99 Alert.VERSION = '3.3.6'
100
101 Alert.TRANSITION_DURATION = 150
102
103 Alert.prototype.close = function (e) {
104 var $this = $(this)
105 var selector = $this.attr('data-target')
106
107 if (!selector) {
108 selector = $this.attr('href')
109 selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
110 }
111
112 var $parent = $(selector)
113
114 if (e) e.preventDefault()
115
116 if (!$parent.length) {
117 $parent = $this.closest('.alert')
118 }
119
120 $parent.trigger(e = $.Event('close.bs.alert'))
121
122 if (e.isDefaultPrevented()) return
123
124 $parent.removeClass('in')
125
126 function removeElement() {
127 // detach from parent, fire event then clean up data
128 $parent.detach().trigger('closed.bs.alert').remove()
129 }
130
131 $.support.transition && $parent.hasClass('fade') ?
132 $parent
133 .one('bsTransitionEnd', removeElement)
134 .emulateTransitionEnd(Alert.TRANSITION_DURATION) :
135 removeElement()
136 }
137
138
139 // ALERT PLUGIN DEFINITION
140 // =======================
141
142 function Plugin(option) {
143 return this.each(function () {
144 var $this = $(this)
145 var data = $this.data('bs.alert')
146
147 if (!data) $this.data('bs.alert', (data = new Alert(this)))
148 if (typeof option == 'string') data[option].call($this)
149 })
150 }
151
152 var old = $.fn.alert
153
154 $.fn.alert = Plugin
155 $.fn.alert.Constructor = Alert
156
157
158 // ALERT NO CONFLICT
159 // =================
160
161 $.fn.alert.noConflict = function () {
162 $.fn.alert = old
163 return this
164 }
165
166
167 // ALERT DATA-API
168 // ==============
169
170 $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
171
172}(jQuery);
173
174/* ========================================================================
175 * Bootstrap: button.js v3.3.6
176 * http://getbootstrap.com/javascript/#buttons
177 * ========================================================================
178 * Copyright 2011-2015 Twitter, Inc.
179 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
180 * ======================================================================== */
181
182
183+function ($) {
184 'use strict';
185
186 // BUTTON PUBLIC CLASS DEFINITION
187 // ==============================
188
189 var Button = function (element, options) {
190 this.$element = $(element)
191 this.options = $.extend({}, Button.DEFAULTS, options)
192 this.isLoading = false
193 }
194
195 Button.VERSION = '3.3.6'
196
197 Button.DEFAULTS = {
198 loadingText: 'loading...'
199 }
200
201 Button.prototype.setState = function (state) {
202 var d = 'disabled'
203 var $el = this.$element
204 var val = $el.is('input') ? 'val' : 'html'
205 var data = $el.data()
206
207 state += 'Text'
208
209 if (data.resetText == null) $el.data('resetText', $el[val]())
210
211 // push to event loop to allow forms to submit
212 setTimeout($.proxy(function () {
213 $el[val](data[state] == null ? this.options[state] : data[state])
214
215 if (state == 'loadingText') {
216 this.isLoading = true
217 $el.addClass(d).attr(d, d)
218 } else if (this.isLoading) {
219 this.isLoading = false
220 $el.removeClass(d).removeAttr(d)
221 }
222 }, this), 0)
223 }
224
225 Button.prototype.toggle = function () {
226 var changed = true
227 var $parent = this.$element.closest('[data-toggle="buttons"]')
228
229 if ($parent.length) {
230 var $input = this.$element.find('input')
231 if ($input.prop('type') == 'radio') {
232 if ($input.prop('checked')) changed = false
233 $parent.find('.active').removeClass('active')
234 this.$element.addClass('active')
235 } else if ($input.prop('type') == 'checkbox') {
236 if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false
237 this.$element.toggleClass('active')
238 }
239 $input.prop('checked', this.$element.hasClass('active'))
240 if (changed) $input.trigger('change')
241 } else {
242 this.$element.attr('aria-pressed', !this.$element.hasClass('active'))
243 this.$element.toggleClass('active')
244 }
245 }
246
247
248 // BUTTON PLUGIN DEFINITION
249 // ========================
250
251 function Plugin(option) {
252 return this.each(function () {
253 var $this = $(this)
254 var data = $this.data('bs.button')
255 var options = typeof option == 'object' && option
256
257 if (!data) $this.data('bs.button', (data = new Button(this, options)))
258
259 if (option == 'toggle') data.toggle()
260 else if (option) data.setState(option)
261 })
262 }
263
264 var old = $.fn.button
265
266 $.fn.button = Plugin
267 $.fn.button.Constructor = Button
268
269
270 // BUTTON NO CONFLICT
271 // ==================
272
273 $.fn.button.noConflict = function () {
274 $.fn.button = old
275 return this
276 }
277
278
279 // BUTTON DATA-API
280 // ===============
281
282 $(document)
283 .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) {
284 var $btn = $(e.target)
285 if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
286 Plugin.call($btn, 'toggle')
287 if (!($(e.target).is('input[type="radio"]') || $(e.target).is('input[type="checkbox"]'))) e.preventDefault()
288 })
289 .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) {
290 $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type))
291 })
292
293}(jQuery);
294
295/* ========================================================================
296 * Bootstrap: carousel.js v3.3.6
297 * http://getbootstrap.com/javascript/#carousel
298 * ========================================================================
299 * Copyright 2011-2015 Twitter, Inc.
300 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
301 * ======================================================================== */
302
303
304+function ($) {
305 'use strict';
306
307 // CAROUSEL CLASS DEFINITION
308 // =========================
309
310 var Carousel = function (element, options) {
311 this.$element = $(element)
312 this.$indicators = this.$element.find('.carousel-indicators')
313 this.options = options
314 this.paused = null
315 this.sliding = null
316 this.interval = null
317 this.$active = null
318 this.$items = null
319
320 this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this))
321
322 this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element
323 .on('mouseenter.bs.carousel', $.proxy(this.pause, this))
324 .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
325 }
326
327 Carousel.VERSION = '3.3.6'
328
329 Carousel.TRANSITION_DURATION = 600
330
331 Carousel.DEFAULTS = {
332 interval: 5000,
333 pause: 'hover',
334 wrap: true,
335 keyboard: true
336 }
337
338 Carousel.prototype.keydown = function (e) {
339 if (/input|textarea/i.test(e.target.tagName)) return
340 switch (e.which) {
341 case 37: this.prev(); break
342 case 39: this.next(); break
343 default: return
344 }
345
346 e.preventDefault()
347 }
348
349 Carousel.prototype.cycle = function (e) {
350 e || (this.paused = false)
351
352 this.interval && clearInterval(this.interval)
353
354 this.options.interval
355 && !this.paused
356 && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
357
358 return this
359 }
360
361 Carousel.prototype.getItemIndex = function (item) {
362 this.$items = item.parent().children('.item')
363 return this.$items.index(item || this.$active)
364 }
365
366 Carousel.prototype.getItemForDirection = function (direction, active) {
367 var activeIndex = this.getItemIndex(active)
368 var willWrap = (direction == 'prev' && activeIndex === 0)
369 || (direction == 'next' && activeIndex == (this.$items.length - 1))
370 if (willWrap && !this.options.wrap) return active
371 var delta = direction == 'prev' ? -1 : 1
372 var itemIndex = (activeIndex + delta) % this.$items.length
373 return this.$items.eq(itemIndex)
374 }
375
376 Carousel.prototype.to = function (pos) {
377 var that = this
378 var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))
379
380 if (pos > (this.$items.length - 1) || pos < 0) return
381
382 if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid"
383 if (activeIndex == pos) return this.pause().cycle()
384
385 return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))
386 }
387
388 Carousel.prototype.pause = function (e) {
389 e || (this.paused = true)
390
391 if (this.$element.find('.next, .prev').length && $.support.transition) {
392 this.$element.trigger($.support.transition.end)
393 this.cycle(true)
394 }
395
396 this.interval = clearInterval(this.interval)
397
398 return this
399 }
400
401 Carousel.prototype.next = function () {
402 if (this.sliding) return
403 return this.slide('next')
404 }
405
406 Carousel.prototype.prev = function () {
407 if (this.sliding) return
408 return this.slide('prev')
409 }
410
411 Carousel.prototype.slide = function (type, next) {
412 var $active = this.$element.find('.item.active')
413 var $next = next || this.getItemForDirection(type, $active)
414 var isCycling = this.interval
415 var direction = type == 'next' ? 'left' : 'right'
416 var that = this
417
418 if ($next.hasClass('active')) return (this.sliding = false)
419
420 var relatedTarget = $next[0]
421 var slideEvent = $.Event('slide.bs.carousel', {
422 relatedTarget: relatedTarget,
423 direction: direction
424 })
425 this.$element.trigger(slideEvent)
426 if (slideEvent.isDefaultPrevented()) return
427
428 this.sliding = true
429
430 isCycling && this.pause()
431
432 if (this.$indicators.length) {
433 this.$indicators.find('.active').removeClass('active')
434 var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])
435 $nextIndicator && $nextIndicator.addClass('active')
436 }
437
438 var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid"
439 if ($.support.transition && this.$element.hasClass('slide')) {
440 $next.addClass(type)
441 $next[0].offsetWidth // force reflow
442 $active.addClass(direction)
443 $next.addClass(direction)
444 $active
445 .one('bsTransitionEnd', function () {
446 $next.removeClass([type, direction].join(' ')).addClass('active')
447 $active.removeClass(['active', direction].join(' '))
448 that.sliding = false
449 setTimeout(function () {
450 that.$element.trigger(slidEvent)
451 }, 0)
452 })
453 .emulateTransitionEnd(Carousel.TRANSITION_DURATION)
454 } else {
455 $active.removeClass('active')
456 $next.addClass('active')
457 this.sliding = false
458 this.$element.trigger(slidEvent)
459 }
460
461 isCycling && this.cycle()
462
463 return this
464 }
465
466
467 // CAROUSEL PLUGIN DEFINITION
468 // ==========================
469
470 function Plugin(option) {
471 return this.each(function () {
472 var $this = $(this)
473 var data = $this.data('bs.carousel')
474 var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
475 var action = typeof option == 'string' ? option : options.slide
476
477 if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
478 if (typeof option == 'number') data.to(option)
479 else if (action) data[action]()
480 else if (options.interval) data.pause().cycle()
481 })
482 }
483
484 var old = $.fn.carousel
485
486 $.fn.carousel = Plugin
487 $.fn.carousel.Constructor = Carousel
488
489
490 // CAROUSEL NO CONFLICT
491 // ====================
492
493 $.fn.carousel.noConflict = function () {
494 $.fn.carousel = old
495 return this
496 }
497
498
499 // CAROUSEL DATA-API
500 // =================
501
502 var clickHandler = function (e) {
503 var href
504 var $this = $(this)
505 var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
506 if (!$target.hasClass('carousel')) return
507 var options = $.extend({}, $target.data(), $this.data())
508 var slideIndex = $this.attr('data-slide-to')
509 if (slideIndex) options.interval = false
510
511 Plugin.call($target, options)
512
513 if (slideIndex) {
514 $target.data('bs.carousel').to(slideIndex)
515 }
516
517 e.preventDefault()
518 }
519
520 $(document)
521 .on('click.bs.carousel.data-api', '[data-slide]', clickHandler)
522 .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)
523
524 $(window).on('load', function () {
525 $('[data-ride="carousel"]').each(function () {
526 var $carousel = $(this)
527 Plugin.call($carousel, $carousel.data())
528 })
529 })
530
531}(jQuery);
532
533/* ========================================================================
534 * Bootstrap: collapse.js v3.3.6
535 * http://getbootstrap.com/javascript/#collapse
536 * ========================================================================
537 * Copyright 2011-2015 Twitter, Inc.
538 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
539 * ======================================================================== */
540
541
542+function ($) {
543 'use strict';
544
545 // COLLAPSE PUBLIC CLASS DEFINITION
546 // ================================
547
548 var Collapse = function (element, options) {
549 this.$element = $(element)
550 this.options = $.extend({}, Collapse.DEFAULTS, options)
551 this.$trigger = $('[data-toggle="collapse"][href="#' + element.id + '"],' +
552 '[data-toggle="collapse"][data-target="#' + element.id + '"]')
553 this.transitioning = null
554
555 if (this.options.parent) {
556 this.$parent = this.getParent()
557 } else {
558 this.addAriaAndCollapsedClass(this.$element, this.$trigger)
559 }
560
561 if (this.options.toggle) this.toggle()
562 }
563
564 Collapse.VERSION = '3.3.6'
565
566 Collapse.TRANSITION_DURATION = 350
567
568 Collapse.DEFAULTS = {
569 toggle: true
570 }
571
572 Collapse.prototype.dimension = function () {
573 var hasWidth = this.$element.hasClass('width')
574 return hasWidth ? 'width' : 'height'
575 }
576
577 Collapse.prototype.show = function () {
578 if (this.transitioning || this.$element.hasClass('in')) return
579
580 var activesData
581 var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing')
582
583 if (actives && actives.length) {
584 activesData = actives.data('bs.collapse')
585 if (activesData && activesData.transitioning) return
586 }
587
588 var startEvent = $.Event('show.bs.collapse')
589 this.$element.trigger(startEvent)
590 if (startEvent.isDefaultPrevented()) return
591
592 if (actives && actives.length) {
593 Plugin.call(actives, 'hide')
594 activesData || actives.data('bs.collapse', null)
595 }
596
597 var dimension = this.dimension()
598
599 this.$element
600 .removeClass('collapse')
601 .addClass('collapsing')[dimension](0)
602 .attr('aria-expanded', true)
603
604 this.$trigger
605 .removeClass('collapsed')
606 .attr('aria-expanded', true)
607
608 this.transitioning = 1
609
610 var complete = function () {
611 this.$element
612 .removeClass('collapsing')
613 .addClass('collapse in')[dimension]('')
614 this.transitioning = 0
615 this.$element
616 .trigger('shown.bs.collapse')
617 }
618
619 if (!$.support.transition) return complete.call(this)
620
621 var scrollSize = $.camelCase(['scroll', dimension].join('-'))
622
623 this.$element
624 .one('bsTransitionEnd', $.proxy(complete, this))
625 .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])
626 }
627
628 Collapse.prototype.hide = function () {
629 if (this.transitioning || !this.$element.hasClass('in')) return
630
631 var startEvent = $.Event('hide.bs.collapse')
632 this.$element.trigger(startEvent)
633 if (startEvent.isDefaultPrevented()) return
634
635 var dimension = this.dimension()
636
637 this.$element[dimension](this.$element[dimension]())[0].offsetHeight
638
639 this.$element
640 .addClass('collapsing')
641 .removeClass('collapse in')
642 .attr('aria-expanded', false)
643
644 this.$trigger
645 .addClass('collapsed')
646 .attr('aria-expanded', false)
647
648 this.transitioning = 1
649
650 var complete = function () {
651 this.transitioning = 0
652 this.$element
653 .removeClass('collapsing')
654 .addClass('collapse')
655 .trigger('hidden.bs.collapse')
656 }
657
658 if (!$.support.transition) return complete.call(this)
659
660 this.$element
661 [dimension](0)
662 .one('bsTransitionEnd', $.proxy(complete, this))
663 .emulateTransitionEnd(Collapse.TRANSITION_DURATION)
664 }
665
666 Collapse.prototype.toggle = function () {
667 this[this.$element.hasClass('in') ? 'hide' : 'show']()
668 }
669
670 Collapse.prototype.getParent = function () {
671 return $(this.options.parent)
672 .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]')
673 .each($.proxy(function (i, element) {
674 var $element = $(element)
675 this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element)
676 }, this))
677 .end()
678 }
679
680 Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) {
681 var isOpen = $element.hasClass('in')
682
683 $element.attr('aria-expanded', isOpen)
684 $trigger
685 .toggleClass('collapsed', !isOpen)
686 .attr('aria-expanded', isOpen)
687 }
688
689 function getTargetFromTrigger($trigger) {
690 var href
691 var target = $trigger.attr('data-target')
692 || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
693
694 return $(target)
695 }
696
697
698 // COLLAPSE PLUGIN DEFINITION
699 // ==========================
700
701 function Plugin(option) {
702 return this.each(function () {
703 var $this = $(this)
704 var data = $this.data('bs.collapse')
705 var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
706
707 if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false
708 if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
709 if (typeof option == 'string') data[option]()
710 })
711 }
712
713 var old = $.fn.collapse
714
715 $.fn.collapse = Plugin
716 $.fn.collapse.Constructor = Collapse
717
718
719 // COLLAPSE NO CONFLICT
720 // ====================
721
722 $.fn.collapse.noConflict = function () {
723 $.fn.collapse = old
724 return this
725 }
726
727
728 // COLLAPSE DATA-API
729 // =================
730
731 $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) {
732 var $this = $(this)
733
734 if (!$this.attr('data-target')) e.preventDefault()
735
736 var $target = getTargetFromTrigger($this)
737 var data = $target.data('bs.collapse')
738 var option = data ? 'toggle' : $this.data()
739
740 Plugin.call($target, option)
741 })
742
743}(jQuery);
744
745/* ========================================================================
746 * Bootstrap: dropdown.js v3.3.6
747 * http://getbootstrap.com/javascript/#dropdowns
748 * ========================================================================
749 * Copyright 2011-2015 Twitter, Inc.
750 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
751 * ======================================================================== */
752
753
754+function ($) {
755 'use strict';
756
757 // DROPDOWN CLASS DEFINITION
758 // =========================
759
760 var backdrop = '.dropdown-backdrop'
761 var toggle = '[data-toggle="dropdown"]'
762 var Dropdown = function (element) {
763 $(element).on('click.bs.dropdown', this.toggle)
764 }
765
766 Dropdown.VERSION = '3.3.6'
767
768 function getParent($this) {
769 var selector = $this.attr('data-target')
770
771 if (!selector) {
772 selector = $this.attr('href')
773 selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
774 }
775
776 var $parent = selector && $(selector)
777
778 return $parent && $parent.length ? $parent : $this.parent()
779 }
780
781 function clearMenus(e) {
782 if (e && e.which === 3) return
783 $(backdrop).remove()
784 $(toggle).each(function () {
785 var $this = $(this)
786 var $parent = getParent($this)
787 var relatedTarget = { relatedTarget: this }
788
789 if (!$parent.hasClass('open')) return
790
791 if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return
792
793 $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
794
795 if (e.isDefaultPrevented()) return
796
797 $this.attr('aria-expanded', 'false')
798 $parent.removeClass('open').trigger($.Event('hidden.bs.dropdown', relatedTarget))
799 })
800 }
801
802 Dropdown.prototype.toggle = function (e) {
803 var $this = $(this)
804
805 if ($this.is('.disabled, :disabled')) return
806
807 var $parent = getParent($this)
808 var isActive = $parent.hasClass('open')
809
810 clearMenus()
811
812 if (!isActive) {
813 if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
814 // if mobile we use a backdrop because click events don't delegate
815 $(document.createElement('div'))
816 .addClass('dropdown-backdrop')
817 .insertAfter($(this))
818 .on('click', clearMenus)
819 }
820
821 var relatedTarget = { relatedTarget: this }
822 $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
823
824 if (e.isDefaultPrevented()) return
825
826 $this
827 .trigger('focus')
828 .attr('aria-expanded', 'true')
829
830 $parent
831 .toggleClass('open')
832 .trigger($.Event('shown.bs.dropdown', relatedTarget))
833 }
834
835 return false
836 }
837
838 Dropdown.prototype.keydown = function (e) {
839 if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return
840
841 var $this = $(this)
842
843 e.preventDefault()
844 e.stopPropagation()
845
846 if ($this.is('.disabled, :disabled')) return
847
848 var $parent = getParent($this)
849 var isActive = $parent.hasClass('open')
850
851 if (!isActive && e.which != 27 || isActive && e.which == 27) {
852 if (e.which == 27) $parent.find(toggle).trigger('focus')
853 return $this.trigger('click')
854 }
855
856 var desc = ' li:not(.disabled):visible a'
857 var $items = $parent.find('.dropdown-menu' + desc)
858
859 if (!$items.length) return
860
861 var index = $items.index(e.target)
862
863 if (e.which == 38 && index > 0) index-- // up
864 if (e.which == 40 && index < $items.length - 1) index++ // down
865 if (!~index) index = 0
866
867 $items.eq(index).trigger('focus')
868 }
869
870
871 // DROPDOWN PLUGIN DEFINITION
872 // ==========================
873
874 function Plugin(option) {
875 return this.each(function () {
876 var $this = $(this)
877 var data = $this.data('bs.dropdown')
878
879 if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
880 if (typeof option == 'string') data[option].call($this)
881 })
882 }
883
884 var old = $.fn.dropdown
885
886 $.fn.dropdown = Plugin
887 $.fn.dropdown.Constructor = Dropdown
888
889
890 // DROPDOWN NO CONFLICT
891 // ====================
892
893 $.fn.dropdown.noConflict = function () {
894 $.fn.dropdown = old
895 return this
896 }
897
898
899 // APPLY TO STANDARD DROPDOWN ELEMENTS
900 // ===================================
901
902 $(document)
903 .on('click.bs.dropdown.data-api', clearMenus)
904 .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
905 .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
906 .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
907 .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown)
908
909}(jQuery);
910
911/* ========================================================================
912 * Bootstrap: modal.js v3.3.6
913 * http://getbootstrap.com/javascript/#modals
914 * ========================================================================
915 * Copyright 2011-2015 Twitter, Inc.
916 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
917 * ======================================================================== */
918
919
920+function ($) {
921 'use strict';
922
923 // MODAL CLASS DEFINITION
924 // ======================
925
926 var Modal = function (element, options) {
927 this.options = options
928 this.$body = $(document.body)
929 this.$element = $(element)
930 this.$dialog = this.$element.find('.modal-dialog')
931 this.$backdrop = null
932 this.isShown = null
933 this.originalBodyPad = null
934 this.scrollbarWidth = 0
935 this.ignoreBackdropClick = false
936
937 if (this.options.remote) {
938 this.$element
939 .find('.modal-content')
940 .load(this.options.remote, $.proxy(function () {
941 this.$element.trigger('loaded.bs.modal')
942 }, this))
943 }
944 }
945
946 Modal.VERSION = '3.3.6'
947
948 Modal.TRANSITION_DURATION = 300
949 Modal.BACKDROP_TRANSITION_DURATION = 150
950
951 Modal.DEFAULTS = {
952 backdrop: true,
953 keyboard: true,
954 show: true
955 }
956
957 Modal.prototype.toggle = function (_relatedTarget) {
958 return this.isShown ? this.hide() : this.show(_relatedTarget)
959 }
960
961 Modal.prototype.show = function (_relatedTarget) {
962 var that = this
963 var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
964
965 this.$element.trigger(e)
966
967 if (this.isShown || e.isDefaultPrevented()) return
968
969 this.isShown = true
970
971 this.checkScrollbar()
972 this.setScrollbar()
973 this.$body.addClass('modal-open')
974
975 this.escape()
976 this.resize()
977
978 this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
979
980 this.$dialog.on('mousedown.dismiss.bs.modal', function () {
981 that.$element.one('mouseup.dismiss.bs.modal', function (e) {
982 if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true
983 })
984 })
985
986 this.backdrop(function () {
987 var transition = $.support.transition && that.$element.hasClass('fade')
988
989 if (!that.$element.parent().length) {
990 that.$element.appendTo(that.$body) // don't move modals dom position
991 }
992
993 that.$element
994 .show()
995 .scrollTop(0)
996
997 that.adjustDialog()
998
999 if (transition) {
1000 that.$element[0].offsetWidth // force reflow
1001 }
1002
1003 that.$element.addClass('in')
1004
1005 that.enforceFocus()
1006
1007 var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
1008
1009 transition ?
1010 that.$dialog // wait for modal to slide in
1011 .one('bsTransitionEnd', function () {
1012 that.$element.trigger('focus').trigger(e)
1013 })
1014 .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
1015 that.$element.trigger('focus').trigger(e)
1016 })
1017 }
1018
1019 Modal.prototype.hide = function (e) {
1020 if (e) e.preventDefault()
1021
1022 e = $.Event('hide.bs.modal')
1023
1024 this.$element.trigger(e)
1025
1026 if (!this.isShown || e.isDefaultPrevented()) return
1027
1028 this.isShown = false
1029
1030 this.escape()
1031 this.resize()
1032
1033 $(document).off('focusin.bs.modal')
1034
1035 this.$element
1036 .removeClass('in')
1037 .off('click.dismiss.bs.modal')
1038 .off('mouseup.dismiss.bs.modal')
1039
1040 this.$dialog.off('mousedown.dismiss.bs.modal')
1041
1042 $.support.transition && this.$element.hasClass('fade') ?
1043 this.$element
1044 .one('bsTransitionEnd', $.proxy(this.hideModal, this))
1045 .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
1046 this.hideModal()
1047 }
1048
1049 Modal.prototype.enforceFocus = function () {
1050 $(document)
1051 .off('focusin.bs.modal') // guard against infinite focus loop
1052 .on('focusin.bs.modal', $.proxy(function (e) {
1053 if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
1054 this.$element.trigger('focus')
1055 }
1056 }, this))
1057 }
1058
1059 Modal.prototype.escape = function () {
1060 if (this.isShown && this.options.keyboard) {
1061 this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {
1062 e.which == 27 && this.hide()
1063 }, this))
1064 } else if (!this.isShown) {
1065 this.$element.off('keydown.dismiss.bs.modal')
1066 }
1067 }
1068
1069 Modal.prototype.resize = function () {
1070 if (this.isShown) {
1071 $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this))
1072 } else {
1073 $(window).off('resize.bs.modal')
1074 }
1075 }
1076
1077 Modal.prototype.hideModal = function () {
1078 var that = this
1079 this.$element.hide()
1080 this.backdrop(function () {
1081 that.$body.removeClass('modal-open')
1082 that.resetAdjustments()
1083 that.resetScrollbar()
1084 that.$element.trigger('hidden.bs.modal')
1085 })
1086 }
1087
1088 Modal.prototype.removeBackdrop = function () {
1089 this.$backdrop && this.$backdrop.remove()
1090 this.$backdrop = null
1091 }
1092
1093 Modal.prototype.backdrop = function (callback) {
1094 var that = this
1095 var animate = this.$element.hasClass('fade') ? 'fade' : ''
1096
1097 if (this.isShown && this.options.backdrop) {
1098 var doAnimate = $.support.transition && animate
1099
1100 this.$backdrop = $(document.createElement('div'))
1101 .addClass('modal-backdrop ' + animate)
1102 .appendTo(this.$body)
1103
1104 this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
1105 if (this.ignoreBackdropClick) {
1106 this.ignoreBackdropClick = false
1107 return
1108 }
1109 if (e.target !== e.currentTarget) return
1110 this.options.backdrop == 'static'
1111 ? this.$element[0].focus()
1112 : this.hide()
1113 }, this))
1114
1115 if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
1116
1117 this.$backdrop.addClass('in')
1118
1119 if (!callback) return
1120
1121 doAnimate ?
1122 this.$backdrop
1123 .one('bsTransitionEnd', callback)
1124 .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
1125 callback()
1126
1127 } else if (!this.isShown && this.$backdrop) {
1128 this.$backdrop.removeClass('in')
1129
1130 var callbackRemove = function () {
1131 that.removeBackdrop()
1132 callback && callback()
1133 }
1134 $.support.transition && this.$element.hasClass('fade') ?
1135 this.$backdrop
1136 .one('bsTransitionEnd', callbackRemove)
1137 .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
1138 callbackRemove()
1139
1140 } else if (callback) {
1141 callback()
1142 }
1143 }
1144
1145 // these following methods are used to handle overflowing modals
1146
1147 Modal.prototype.handleUpdate = function () {
1148 this.adjustDialog()
1149 }
1150
1151 Modal.prototype.adjustDialog = function () {
1152 var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight
1153
1154 this.$element.css({
1155 paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
1156 paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''
1157 })
1158 }
1159
1160 Modal.prototype.resetAdjustments = function () {
1161 this.$element.css({
1162 paddingLeft: '',
1163 paddingRight: ''
1164 })
1165 }
1166
1167 Modal.prototype.checkScrollbar = function () {
1168 var fullWindowWidth = window.innerWidth
1169 if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8
1170 var documentElementRect = document.documentElement.getBoundingClientRect()
1171 fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left)
1172 }
1173 this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth
1174 this.scrollbarWidth = this.measureScrollbar()
1175 }
1176
1177 Modal.prototype.setScrollbar = function () {
1178 var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
1179 this.originalBodyPad = document.body.style.paddingRight || ''
1180 if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
1181 }
1182
1183 Modal.prototype.resetScrollbar = function () {
1184 this.$body.css('padding-right', this.originalBodyPad)
1185 }
1186
1187 Modal.prototype.measureScrollbar = function () { // thx walsh
1188 var scrollDiv = document.createElement('div')
1189 scrollDiv.className = 'modal-scrollbar-measure'
1190 this.$body.append(scrollDiv)
1191 var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth
1192 this.$body[0].removeChild(scrollDiv)
1193 return scrollbarWidth
1194 }
1195
1196
1197 // MODAL PLUGIN DEFINITION
1198 // =======================
1199
1200 function Plugin(option, _relatedTarget) {
1201 return this.each(function () {
1202 var $this = $(this)
1203 var data = $this.data('bs.modal')
1204 var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
1205
1206 if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
1207 if (typeof option == 'string') data[option](_relatedTarget)
1208 else if (options.show) data.show(_relatedTarget)
1209 })
1210 }
1211
1212 var old = $.fn.modal
1213
1214 $.fn.modal = Plugin
1215 $.fn.modal.Constructor = Modal
1216
1217
1218 // MODAL NO CONFLICT
1219 // =================
1220
1221 $.fn.modal.noConflict = function () {
1222 $.fn.modal = old
1223 return this
1224 }
1225
1226
1227 // MODAL DATA-API
1228 // ==============
1229
1230 $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
1231 var $this = $(this)
1232 var href = $this.attr('href')
1233 var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7
1234 var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
1235
1236 if ($this.is('a')) e.preventDefault()
1237
1238 $target.one('show.bs.modal', function (showEvent) {
1239 if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown
1240 $target.one('hidden.bs.modal', function () {
1241 $this.is(':visible') && $this.trigger('focus')
1242 })
1243 })
1244 Plugin.call($target, option, this)
1245 })
1246
1247}(jQuery);
1248
1249/* ========================================================================
1250 * Bootstrap: tooltip.js v3.3.6
1251 * http://getbootstrap.com/javascript/#tooltip
1252 * Inspired by the original jQuery.tipsy by Jason Frame
1253 * ========================================================================
1254 * Copyright 2011-2015 Twitter, Inc.
1255 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1256 * ======================================================================== */
1257
1258
1259+function ($) {
1260 'use strict';
1261
1262 // TOOLTIP PUBLIC CLASS DEFINITION
1263 // ===============================
1264
1265 var Tooltip = function (element, options) {
1266 this.type = null
1267 this.options = null
1268 this.enabled = null
1269 this.timeout = null
1270 this.hoverState = null
1271 this.$element = null
1272 this.inState = null
1273
1274 this.init('tooltip', element, options)
1275 }
1276
1277 Tooltip.VERSION = '3.3.6'
1278
1279 Tooltip.TRANSITION_DURATION = 150
1280
1281 Tooltip.DEFAULTS = {
1282 animation: true,
1283 placement: 'top',
1284 selector: false,
1285 template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
1286 trigger: 'hover focus',
1287 title: '',
1288 delay: 0,
1289 html: false,
1290 container: false,
1291 viewport: {
1292 selector: 'body',
1293 padding: 0
1294 }
1295 }
1296
1297 Tooltip.prototype.init = function (type, element, options) {
1298 this.enabled = true
1299 this.type = type
1300 this.$element = $(element)
1301 this.options = this.getOptions(options)
1302 this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport))
1303 this.inState = { click: false, hover: false, focus: false }
1304
1305 if (this.$element[0] instanceof document.constructor && !this.options.selector) {
1306 throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!')
1307 }
1308
1309 var triggers = this.options.trigger.split(' ')
1310
1311 for (var i = triggers.length; i--;) {
1312 var trigger = triggers[i]
1313
1314 if (trigger == 'click') {
1315 this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
1316 } else if (trigger != 'manual') {
1317 var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin'
1318 var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
1319
1320 this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
1321 this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
1322 }
1323 }
1324
1325 this.options.selector ?
1326 (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
1327 this.fixTitle()
1328 }
1329
1330 Tooltip.prototype.getDefaults = function () {
1331 return Tooltip.DEFAULTS
1332 }
1333
1334 Tooltip.prototype.getOptions = function (options) {
1335 options = $.extend({}, this.getDefaults(), this.$element.data(), options)
1336
1337 if (options.delay && typeof options.delay == 'number') {
1338 options.delay = {
1339 show: options.delay,
1340 hide: options.delay
1341 }
1342 }
1343
1344 return options
1345 }
1346
1347 Tooltip.prototype.getDelegateOptions = function () {
1348 var options = {}
1349 var defaults = this.getDefaults()
1350
1351 this._options && $.each(this._options, function (key, value) {
1352 if (defaults[key] != value) options[key] = value
1353 })
1354
1355 return options
1356 }
1357
1358 Tooltip.prototype.enter = function (obj) {
1359 var self = obj instanceof this.constructor ?
1360 obj : $(obj.currentTarget).data('bs.' + this.type)
1361
1362 if (!self) {
1363 self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
1364 $(obj.currentTarget).data('bs.' + this.type, self)
1365 }
1366
1367 if (obj instanceof $.Event) {
1368 self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true
1369 }
1370
1371 if (self.tip().hasClass('in') || self.hoverState == 'in') {
1372 self.hoverState = 'in'
1373 return
1374 }
1375
1376 clearTimeout(self.timeout)
1377
1378 self.hoverState = 'in'
1379
1380 if (!self.options.delay || !self.options.delay.show) return self.show()
1381
1382 self.timeout = setTimeout(function () {
1383 if (self.hoverState == 'in') self.show()
1384 }, self.options.delay.show)
1385 }
1386
1387 Tooltip.prototype.isInStateTrue = function () {
1388 for (var key in this.inState) {
1389 if (this.inState[key]) return true
1390 }
1391
1392 return false
1393 }
1394
1395 Tooltip.prototype.leave = function (obj) {
1396 var self = obj instanceof this.constructor ?
1397 obj : $(obj.currentTarget).data('bs.' + this.type)
1398
1399 if (!self) {
1400 self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
1401 $(obj.currentTarget).data('bs.' + this.type, self)
1402 }
1403
1404 if (obj instanceof $.Event) {
1405 self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false
1406 }
1407
1408 if (self.isInStateTrue()) return
1409
1410 clearTimeout(self.timeout)
1411
1412 self.hoverState = 'out'
1413
1414 if (!self.options.delay || !self.options.delay.hide) return self.hide()
1415
1416 self.timeout = setTimeout(function () {
1417 if (self.hoverState == 'out') self.hide()
1418 }, self.options.delay.hide)
1419 }
1420
1421 Tooltip.prototype.show = function () {
1422 var e = $.Event('show.bs.' + this.type)
1423
1424 if (this.hasContent() && this.enabled) {
1425 this.$element.trigger(e)
1426
1427 var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0])
1428 if (e.isDefaultPrevented() || !inDom) return
1429 var that = this
1430
1431 var $tip = this.tip()
1432
1433 var tipId = this.getUID(this.type)
1434
1435 this.setContent()
1436 $tip.attr('id', tipId)
1437 this.$element.attr('aria-describedby', tipId)
1438
1439 if (this.options.animation) $tip.addClass('fade')
1440
1441 var placement = typeof this.options.placement == 'function' ?
1442 this.options.placement.call(this, $tip[0], this.$element[0]) :
1443 this.options.placement
1444
1445 var autoToken = /\s?auto?\s?/i
1446 var autoPlace = autoToken.test(placement)
1447 if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
1448
1449 $tip
1450 .detach()
1451 .css({ top: 0, left: 0, display: 'block' })
1452 .addClass(placement)
1453 .data('bs.' + this.type, this)
1454
1455 this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
1456 this.$element.trigger('inserted.bs.' + this.type)
1457
1458 var pos = this.getPosition()
1459 var actualWidth = $tip[0].offsetWidth
1460 var actualHeight = $tip[0].offsetHeight
1461
1462 if (autoPlace) {
1463 var orgPlacement = placement
1464 var viewportDim = this.getPosition(this.$viewport)
1465
1466 placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top' :
1467 placement == 'top' && pos.top - actualHeight < viewportDim.top ? 'bottom' :
1468 placement == 'right' && pos.right + actualWidth > viewportDim.width ? 'left' :
1469 placement == 'left' && pos.left - actualWidth < viewportDim.left ? 'right' :
1470 placement
1471
1472 $tip
1473 .removeClass(orgPlacement)
1474 .addClass(placement)
1475 }
1476
1477 var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
1478
1479 this.applyPlacement(calculatedOffset, placement)
1480
1481 var complete = function () {
1482 var prevHoverState = that.hoverState
1483 that.$element.trigger('shown.bs.' + that.type)
1484 that.hoverState = null
1485
1486 if (prevHoverState == 'out') that.leave(that)
1487 }
1488
1489 $.support.transition && this.$tip.hasClass('fade') ?
1490 $tip
1491 .one('bsTransitionEnd', complete)
1492 .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
1493 complete()
1494 }
1495 }
1496
1497 Tooltip.prototype.applyPlacement = function (offset, placement) {
1498 var $tip = this.tip()
1499 var width = $tip[0].offsetWidth
1500 var height = $tip[0].offsetHeight
1501
1502 // manually read margins because getBoundingClientRect includes difference
1503 var marginTop = parseInt($tip.css('margin-top'), 10)
1504 var marginLeft = parseInt($tip.css('margin-left'), 10)
1505
1506 // we must check for NaN for ie 8/9
1507 if (isNaN(marginTop)) marginTop = 0
1508 if (isNaN(marginLeft)) marginLeft = 0
1509
1510 offset.top += marginTop
1511 offset.left += marginLeft
1512
1513 // $.fn.offset doesn't round pixel values
1514 // so we use setOffset directly with our own function B-0
1515 $.offset.setOffset($tip[0], $.extend({
1516 using: function (props) {
1517 $tip.css({
1518 top: Math.round(props.top),
1519 left: Math.round(props.left)
1520 })
1521 }
1522 }, offset), 0)
1523
1524 $tip.addClass('in')
1525
1526 // check to see if placing tip in new offset caused the tip to resize itself
1527 var actualWidth = $tip[0].offsetWidth
1528 var actualHeight = $tip[0].offsetHeight
1529
1530 if (placement == 'top' && actualHeight != height) {
1531 offset.top = offset.top + height - actualHeight
1532 }
1533
1534 var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)
1535
1536 if (delta.left) offset.left += delta.left
1537 else offset.top += delta.top
1538
1539 var isVertical = /top|bottom/.test(placement)
1540 var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight
1541 var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight'
1542
1543 $tip.offset(offset)
1544 this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical)
1545 }
1546
1547 Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) {
1548 this.arrow()
1549 .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%')
1550 .css(isVertical ? 'top' : 'left', '')
1551 }
1552
1553 Tooltip.prototype.setContent = function () {
1554 var $tip = this.tip()
1555 var title = this.getTitle()
1556
1557 $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
1558 $tip.removeClass('fade in top bottom left right')
1559 }
1560
1561 Tooltip.prototype.hide = function (callback) {
1562 var that = this
1563 var $tip = $(this.$tip)
1564 var e = $.Event('hide.bs.' + this.type)
1565
1566 function complete() {
1567 if (that.hoverState != 'in') $tip.detach()
1568 that.$element
1569 .removeAttr('aria-describedby')
1570 .trigger('hidden.bs.' + that.type)
1571 callback && callback()
1572 }
1573
1574 this.$element.trigger(e)
1575
1576 if (e.isDefaultPrevented()) return
1577
1578 $tip.removeClass('in')
1579
1580 $.support.transition && $tip.hasClass('fade') ?
1581 $tip
1582 .one('bsTransitionEnd', complete)
1583 .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
1584 complete()
1585
1586 this.hoverState = null
1587
1588 return this
1589 }
1590
1591 Tooltip.prototype.fixTitle = function () {
1592 var $e = this.$element
1593 if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') {
1594 $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
1595 }
1596 }
1597
1598 Tooltip.prototype.hasContent = function () {
1599 return this.getTitle()
1600 }
1601
1602 Tooltip.prototype.getPosition = function ($element) {
1603 $element = $element || this.$element
1604
1605 var el = $element[0]
1606 var isBody = el.tagName == 'BODY'
1607
1608 var elRect = el.getBoundingClientRect()
1609 if (elRect.width == null) {
1610 // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093
1611 elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top })
1612 }
1613 var elOffset = isBody ? { top: 0, left: 0 } : $element.offset()
1614 var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() }
1615 var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null
1616
1617 return $.extend({}, elRect, scroll, outerDims, elOffset)
1618 }
1619
1620 Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
1621 return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } :
1622 placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
1623 placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
1624 /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
1625
1626 }
1627
1628 Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) {
1629 var delta = { top: 0, left: 0 }
1630 if (!this.$viewport) return delta
1631
1632 var viewportPadding = this.options.viewport && this.options.viewport.padding || 0
1633 var viewportDimensions = this.getPosition(this.$viewport)
1634
1635 if (/right|left/.test(placement)) {
1636 var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll
1637 var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight
1638 if (topEdgeOffset < viewportDimensions.top) { // top overflow
1639 delta.top = viewportDimensions.top - topEdgeOffset
1640 } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow
1641 delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset
1642 }
1643 } else {
1644 var leftEdgeOffset = pos.left - viewportPadding
1645 var rightEdgeOffset = pos.left + viewportPadding + actualWidth
1646 if (leftEdgeOffset < viewportDimensions.left) { // left overflow
1647 delta.left = viewportDimensions.left - leftEdgeOffset
1648 } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow
1649 delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset
1650 }
1651 }
1652
1653 return delta
1654 }
1655
1656 Tooltip.prototype.getTitle = function () {
1657 var title
1658 var $e = this.$element
1659 var o = this.options
1660
1661 title = $e.attr('data-original-title')
1662 || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
1663
1664 return title
1665 }
1666
1667 Tooltip.prototype.getUID = function (prefix) {
1668 do prefix += ~~(Math.random() * 1000000)
1669 while (document.getElementById(prefix))
1670 return prefix
1671 }
1672
1673 Tooltip.prototype.tip = function () {
1674 if (!this.$tip) {
1675 this.$tip = $(this.options.template)
1676 if (this.$tip.length != 1) {
1677 throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!')
1678 }
1679 }
1680 return this.$tip
1681 }
1682
1683 Tooltip.prototype.arrow = function () {
1684 return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow'))
1685 }
1686
1687 Tooltip.prototype.enable = function () {
1688 this.enabled = true
1689 }
1690
1691 Tooltip.prototype.disable = function () {
1692 this.enabled = false
1693 }
1694
1695 Tooltip.prototype.toggleEnabled = function () {
1696 this.enabled = !this.enabled
1697 }
1698
1699 Tooltip.prototype.toggle = function (e) {
1700 var self = this
1701 if (e) {
1702 self = $(e.currentTarget).data('bs.' + this.type)
1703 if (!self) {
1704 self = new this.constructor(e.currentTarget, this.getDelegateOptions())
1705 $(e.currentTarget).data('bs.' + this.type, self)
1706 }
1707 }
1708
1709 if (e) {
1710 self.inState.click = !self.inState.click
1711 if (self.isInStateTrue()) self.enter(self)
1712 else self.leave(self)
1713 } else {
1714 self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
1715 }
1716 }
1717
1718 Tooltip.prototype.destroy = function () {
1719 var that = this
1720 clearTimeout(this.timeout)
1721 this.hide(function () {
1722 that.$element.off('.' + that.type).removeData('bs.' + that.type)
1723 if (that.$tip) {
1724 that.$tip.detach()
1725 }
1726 that.$tip = null
1727 that.$arrow = null
1728 that.$viewport = null
1729 })
1730 }
1731
1732
1733 // TOOLTIP PLUGIN DEFINITION
1734 // =========================
1735
1736 function Plugin(option) {
1737 return this.each(function () {
1738 var $this = $(this)
1739 var data = $this.data('bs.tooltip')
1740 var options = typeof option == 'object' && option
1741
1742 if (!data && /destroy|hide/.test(option)) return
1743 if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
1744 if (typeof option == 'string') data[option]()
1745 })
1746 }
1747
1748 var old = $.fn.tooltip
1749
1750 $.fn.tooltip = Plugin
1751 $.fn.tooltip.Constructor = Tooltip
1752
1753
1754 // TOOLTIP NO CONFLICT
1755 // ===================
1756
1757 $.fn.tooltip.noConflict = function () {
1758 $.fn.tooltip = old
1759 return this
1760 }
1761
1762}(jQuery);
1763
1764/* ========================================================================
1765 * Bootstrap: popover.js v3.3.6
1766 * http://getbootstrap.com/javascript/#popovers
1767 * ========================================================================
1768 * Copyright 2011-2015 Twitter, Inc.
1769 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1770 * ======================================================================== */
1771
1772
1773+function ($) {
1774 'use strict';
1775
1776 // POPOVER PUBLIC CLASS DEFINITION
1777 // ===============================
1778
1779 var Popover = function (element, options) {
1780 this.init('popover', element, options)
1781 }
1782
1783 if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
1784
1785 Popover.VERSION = '3.3.6'
1786
1787 Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
1788 placement: 'right',
1789 trigger: 'click',
1790 content: '',
1791 template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
1792 })
1793
1794
1795 // NOTE: POPOVER EXTENDS tooltip.js
1796 // ================================
1797
1798 Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
1799
1800 Popover.prototype.constructor = Popover
1801
1802 Popover.prototype.getDefaults = function () {
1803 return Popover.DEFAULTS
1804 }
1805
1806 Popover.prototype.setContent = function () {
1807 var $tip = this.tip()
1808 var title = this.getTitle()
1809 var content = this.getContent()
1810
1811 $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
1812 $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events
1813 this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
1814 ](content)
1815
1816 $tip.removeClass('fade top bottom left right in')
1817
1818 // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
1819 // this manually by checking the contents.
1820 if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
1821 }
1822
1823 Popover.prototype.hasContent = function () {
1824 return this.getTitle() || this.getContent()
1825 }
1826
1827 Popover.prototype.getContent = function () {
1828 var $e = this.$element
1829 var o = this.options
1830
1831 return $e.attr('data-content')
1832 || (typeof o.content == 'function' ?
1833 o.content.call($e[0]) :
1834 o.content)
1835 }
1836
1837 Popover.prototype.arrow = function () {
1838 return (this.$arrow = this.$arrow || this.tip().find('.arrow'))
1839 }
1840
1841
1842 // POPOVER PLUGIN DEFINITION
1843 // =========================
1844
1845 function Plugin(option) {
1846 return this.each(function () {
1847 var $this = $(this)
1848 var data = $this.data('bs.popover')
1849 var options = typeof option == 'object' && option
1850
1851 if (!data && /destroy|hide/.test(option)) return
1852 if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
1853 if (typeof option == 'string') data[option]()
1854 })
1855 }
1856
1857 var old = $.fn.popover
1858
1859 $.fn.popover = Plugin
1860 $.fn.popover.Constructor = Popover
1861
1862
1863 // POPOVER NO CONFLICT
1864 // ===================
1865
1866 $.fn.popover.noConflict = function () {
1867 $.fn.popover = old
1868 return this
1869 }
1870
1871}(jQuery);
1872
1873/* ========================================================================
1874 * Bootstrap: scrollspy.js v3.3.6
1875 * http://getbootstrap.com/javascript/#scrollspy
1876 * ========================================================================
1877 * Copyright 2011-2015 Twitter, Inc.
1878 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1879 * ======================================================================== */
1880
1881
1882+function ($) {
1883 'use strict';
1884
1885 // SCROLLSPY CLASS DEFINITION
1886 // ==========================
1887
1888 function ScrollSpy(element, options) {
1889 this.$body = $(document.body)
1890 this.$scrollElement = $(element).is(document.body) ? $(window) : $(element)
1891 this.options = $.extend({}, ScrollSpy.DEFAULTS, options)
1892 this.selector = (this.options.target || '') + ' .nav li > a'
1893 this.offsets = []
1894 this.targets = []
1895 this.activeTarget = null
1896 this.scrollHeight = 0
1897
1898 this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this))
1899 this.refresh()
1900 this.process()
1901 }
1902
1903 ScrollSpy.VERSION = '3.3.6'
1904
1905 ScrollSpy.DEFAULTS = {
1906 offset: 10
1907 }
1908
1909 ScrollSpy.prototype.getScrollHeight = function () {
1910 return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight)
1911 }
1912
1913 ScrollSpy.prototype.refresh = function () {
1914 var that = this
1915 var offsetMethod = 'offset'
1916 var offsetBase = 0
1917
1918 this.offsets = []
1919 this.targets = []
1920 this.scrollHeight = this.getScrollHeight()
1921
1922 if (!$.isWindow(this.$scrollElement[0])) {
1923 offsetMethod = 'position'
1924 offsetBase = this.$scrollElement.scrollTop()
1925 }
1926
1927 this.$body
1928 .find(this.selector)
1929 .map(function () {
1930 var $el = $(this)
1931 var href = $el.data('target') || $el.attr('href')
1932 var $href = /^#./.test(href) && $(href)
1933
1934 return ($href
1935 && $href.length
1936 && $href.is(':visible')
1937 && [[$href[offsetMethod]().top + offsetBase, href]]) || null
1938 })
1939 .sort(function (a, b) { return a[0] - b[0] })
1940 .each(function () {
1941 that.offsets.push(this[0])
1942 that.targets.push(this[1])
1943 })
1944 }
1945
1946 ScrollSpy.prototype.process = function () {
1947 var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
1948 var scrollHeight = this.getScrollHeight()
1949 var maxScroll = this.options.offset + scrollHeight - this.$scrollElement.height()
1950 var offsets = this.offsets
1951 var targets = this.targets
1952 var activeTarget = this.activeTarget
1953 var i
1954
1955 if (this.scrollHeight != scrollHeight) {
1956 this.refresh()
1957 }
1958
1959 if (scrollTop >= maxScroll) {
1960 return activeTarget != (i = targets[targets.length - 1]) && this.activate(i)
1961 }
1962
1963 if (activeTarget && scrollTop < offsets[0]) {
1964 this.activeTarget = null
1965 return this.clear()
1966 }
1967
1968 for (i = offsets.length; i--;) {
1969 activeTarget != targets[i]
1970 && scrollTop >= offsets[i]
1971 && (offsets[i + 1] === undefined || scrollTop < offsets[i + 1])
1972 && this.activate(targets[i])
1973 }
1974 }
1975
1976 ScrollSpy.prototype.activate = function (target) {
1977 this.activeTarget = target
1978
1979 this.clear()
1980
1981 var selector = this.selector +
1982 '[data-target="' + target + '"],' +
1983 this.selector + '[href="' + target + '"]'
1984
1985 var active = $(selector)
1986 .parents('li')
1987 .addClass('active')
1988
1989 if (active.parent('.dropdown-menu').length) {
1990 active = active
1991 .closest('li.dropdown')
1992 .addClass('active')
1993 }
1994
1995 active.trigger('activate.bs.scrollspy')
1996 }
1997
1998 ScrollSpy.prototype.clear = function () {
1999 $(this.selector)
2000 .parentsUntil(this.options.target, '.active')
2001 .removeClass('active')
2002 }
2003
2004
2005 // SCROLLSPY PLUGIN DEFINITION
2006 // ===========================
2007
2008 function Plugin(option) {
2009 return this.each(function () {
2010 var $this = $(this)
2011 var data = $this.data('bs.scrollspy')
2012 var options = typeof option == 'object' && option
2013
2014 if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
2015 if (typeof option == 'string') data[option]()
2016 })
2017 }
2018
2019 var old = $.fn.scrollspy
2020
2021 $.fn.scrollspy = Plugin
2022 $.fn.scrollspy.Constructor = ScrollSpy
2023
2024
2025 // SCROLLSPY NO CONFLICT
2026 // =====================
2027
2028 $.fn.scrollspy.noConflict = function () {
2029 $.fn.scrollspy = old
2030 return this
2031 }
2032
2033
2034 // SCROLLSPY DATA-API
2035 // ==================
2036
2037 $(window).on('load.bs.scrollspy.data-api', function () {
2038 $('[data-spy="scroll"]').each(function () {
2039 var $spy = $(this)
2040 Plugin.call($spy, $spy.data())
2041 })
2042 })
2043
2044}(jQuery);
2045
2046/* ========================================================================
2047 * Bootstrap: tab.js v3.3.6
2048 * http://getbootstrap.com/javascript/#tabs
2049 * ========================================================================
2050 * Copyright 2011-2015 Twitter, Inc.
2051 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
2052 * ======================================================================== */
2053
2054
2055+function ($) {
2056 'use strict';
2057
2058 // TAB CLASS DEFINITION
2059 // ====================
2060
2061 var Tab = function (element) {
2062 // jscs:disable requireDollarBeforejQueryAssignment
2063 this.element = $(element)
2064 // jscs:enable requireDollarBeforejQueryAssignment
2065 }
2066
2067 Tab.VERSION = '3.3.6'
2068
2069 Tab.TRANSITION_DURATION = 150
2070
2071 Tab.prototype.show = function () {
2072 var $this = this.element
2073 var $ul = $this.closest('ul:not(.dropdown-menu)')
2074 var selector = $this.data('target')
2075
2076 if (!selector) {
2077 selector = $this.attr('href')
2078 selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
2079 }
2080
2081 if ($this.parent('li').hasClass('active')) return
2082
2083 var $previous = $ul.find('.active:last a')
2084 var hideEvent = $.Event('hide.bs.tab', {
2085 relatedTarget: $this[0]
2086 })
2087 var showEvent = $.Event('show.bs.tab', {
2088 relatedTarget: $previous[0]
2089 })
2090
2091 $previous.trigger(hideEvent)
2092 $this.trigger(showEvent)
2093
2094 if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return
2095
2096 var $target = $(selector)
2097
2098 this.activate($this.closest('li'), $ul)
2099 this.activate($target, $target.parent(), function () {
2100 $previous.trigger({
2101 type: 'hidden.bs.tab',
2102 relatedTarget: $this[0]
2103 })
2104 $this.trigger({
2105 type: 'shown.bs.tab',
2106 relatedTarget: $previous[0]
2107 })
2108 })
2109 }
2110
2111 Tab.prototype.activate = function (element, container, callback) {
2112 var $active = container.find('> .active')
2113 var transition = callback
2114 && $.support.transition
2115 && ($active.length && $active.hasClass('fade') || !!container.find('> .fade').length)
2116
2117 function next() {
2118 $active
2119 .removeClass('active')
2120 .find('> .dropdown-menu > .active')
2121 .removeClass('active')
2122 .end()
2123 .find('[data-toggle="tab"]')
2124 .attr('aria-expanded', false)
2125
2126 element
2127 .addClass('active')
2128 .find('[data-toggle="tab"]')
2129 .attr('aria-expanded', true)
2130
2131 if (transition) {
2132 element[0].offsetWidth // reflow for transition
2133 element.addClass('in')
2134 } else {
2135 element.removeClass('fade')
2136 }
2137
2138 if (element.parent('.dropdown-menu').length) {
2139 element
2140 .closest('li.dropdown')
2141 .addClass('active')
2142 .end()
2143 .find('[data-toggle="tab"]')
2144 .attr('aria-expanded', true)
2145 }
2146
2147 callback && callback()
2148 }
2149
2150 $active.length && transition ?
2151 $active
2152 .one('bsTransitionEnd', next)
2153 .emulateTransitionEnd(Tab.TRANSITION_DURATION) :
2154 next()
2155
2156 $active.removeClass('in')
2157 }
2158
2159
2160 // TAB PLUGIN DEFINITION
2161 // =====================
2162
2163 function Plugin(option) {
2164 return this.each(function () {
2165 var $this = $(this)
2166 var data = $this.data('bs.tab')
2167
2168 if (!data) $this.data('bs.tab', (data = new Tab(this)))
2169 if (typeof option == 'string') data[option]()
2170 })
2171 }
2172
2173 var old = $.fn.tab
2174
2175 $.fn.tab = Plugin
2176 $.fn.tab.Constructor = Tab
2177
2178
2179 // TAB NO CONFLICT
2180 // ===============
2181
2182 $.fn.tab.noConflict = function () {
2183 $.fn.tab = old
2184 return this
2185 }
2186
2187
2188 // TAB DATA-API
2189 // ============
2190
2191 var clickHandler = function (e) {
2192 e.preventDefault()
2193 Plugin.call($(this), 'show')
2194 }
2195
2196 $(document)
2197 .on('click.bs.tab.data-api', '[data-toggle="tab"]', clickHandler)
2198 .on('click.bs.tab.data-api', '[data-toggle="pill"]', clickHandler)
2199
2200}(jQuery);
2201
2202/* ========================================================================
2203 * Bootstrap: affix.js v3.3.6
2204 * http://getbootstrap.com/javascript/#affix
2205 * ========================================================================
2206 * Copyright 2011-2015 Twitter, Inc.
2207 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
2208 * ======================================================================== */
2209
2210
2211+function ($) {
2212 'use strict';
2213
2214 // AFFIX CLASS DEFINITION
2215 // ======================
2216
2217 var Affix = function (element, options) {
2218 this.options = $.extend({}, Affix.DEFAULTS, options)
2219
2220 this.$target = $(this.options.target)
2221 .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
2222 .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this))
2223
2224 this.$element = $(element)
2225 this.affixed = null
2226 this.unpin = null
2227 this.pinnedOffset = null
2228
2229 this.checkPosition()
2230 }
2231
2232 Affix.VERSION = '3.3.6'
2233
2234 Affix.RESET = 'affix affix-top affix-bottom'
2235
2236 Affix.DEFAULTS = {
2237 offset: 0,
2238 target: window
2239 }
2240
2241 Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) {
2242 var scrollTop = this.$target.scrollTop()
2243 var position = this.$element.offset()
2244 var targetHeight = this.$target.height()
2245
2246 if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false
2247
2248 if (this.affixed == 'bottom') {
2249 if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom'
2250 return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom'
2251 }
2252
2253 var initializing = this.affixed == null
2254 var colliderTop = initializing ? scrollTop : position.top
2255 var colliderHeight = initializing ? targetHeight : height
2256
2257 if (offsetTop != null && scrollTop <= offsetTop) return 'top'
2258 if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom'
2259
2260 return false
2261 }
2262
2263 Affix.prototype.getPinnedOffset = function () {
2264 if (this.pinnedOffset) return this.pinnedOffset
2265 this.$element.removeClass(Affix.RESET).addClass('affix')
2266 var scrollTop = this.$target.scrollTop()
2267 var position = this.$element.offset()
2268 return (this.pinnedOffset = position.top - scrollTop)
2269 }
2270
2271 Affix.prototype.checkPositionWithEventLoop = function () {
2272 setTimeout($.proxy(this.checkPosition, this), 1)
2273 }
2274
2275 Affix.prototype.checkPosition = function () {
2276 if (!this.$element.is(':visible')) return
2277
2278 var height = this.$element.height()
2279 var offset = this.options.offset
2280 var offsetTop = offset.top
2281 var offsetBottom = offset.bottom
2282 var scrollHeight = Math.max($(document).height(), $(document.body).height())
2283
2284 if (typeof offset != 'object') offsetBottom = offsetTop = offset
2285 if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element)
2286 if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
2287
2288 var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom)
2289
2290 if (this.affixed != affix) {
2291 if (this.unpin != null) this.$element.css('top', '')
2292
2293 var affixType = 'affix' + (affix ? '-' + affix : '')
2294 var e = $.Event(affixType + '.bs.affix')
2295
2296 this.$element.trigger(e)
2297
2298 if (e.isDefaultPrevented()) return
2299
2300 this.affixed = affix
2301 this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
2302
2303 this.$element
2304 .removeClass(Affix.RESET)
2305 .addClass(affixType)
2306 .trigger(affixType.replace('affix', 'affixed') + '.bs.affix')
2307 }
2308
2309 if (affix == 'bottom') {
2310 this.$element.offset({
2311 top: scrollHeight - height - offsetBottom
2312 })
2313 }
2314 }
2315
2316
2317 // AFFIX PLUGIN DEFINITION
2318 // =======================
2319
2320 function Plugin(option) {
2321 return this.each(function () {
2322 var $this = $(this)
2323 var data = $this.data('bs.affix')
2324 var options = typeof option == 'object' && option
2325
2326 if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
2327 if (typeof option == 'string') data[option]()
2328 })
2329 }
2330
2331 var old = $.fn.affix
2332
2333 $.fn.affix = Plugin
2334 $.fn.affix.Constructor = Affix
2335
2336
2337 // AFFIX NO CONFLICT
2338 // =================
2339
2340 $.fn.affix.noConflict = function () {
2341 $.fn.affix = old
2342 return this
2343 }
2344
2345
2346 // AFFIX DATA-API
2347 // ==============
2348
2349 $(window).on('load', function () {
2350 $('[data-spy="affix"]').each(function () {
2351 var $spy = $(this)
2352 var data = $spy.data()
2353
2354 data.offset = data.offset || {}
2355
2356 if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom
2357 if (data.offsetTop != null) data.offset.top = data.offsetTop
2358
2359 Plugin.call($spy, data)
2360 })
2361 })
2362
2363}(jQuery);
diff --git a/bitbake/lib/toaster/toastergui/static/js/bootstrap.min.js b/bitbake/lib/toaster/toastergui/static/js/bootstrap.min.js
index 848258d380..c4a924160d 100644
--- a/bitbake/lib/toaster/toastergui/static/js/bootstrap.min.js
+++ b/bitbake/lib/toaster/toastergui/static/js/bootstrap.min.js
@@ -1,6 +1,7 @@
1/*! 1/*!
2* Bootstrap.js by @fat & @mdo 2 * Bootstrap v3.3.6 (http://getbootstrap.com)
3* Copyright 2013 Twitter, Inc. 3 * Copyright 2011-2016 Twitter, Inc.
4* http://www.apache.org/licenses/LICENSE-2.0.txt 4 * Licensed under the MIT license
5*/ 5 */
6!function(e){"use strict";e(function(){e.support.transition=function(){var e=function(){var e=document.createElement("bootstrap"),t={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"},n;for(n in t)if(e.style[n]!==undefined)return t[n]}();return e&&{end:e}}()})}(window.jQuery),!function(e){"use strict";var t='[data-dismiss="alert"]',n=function(n){e(n).on("click",t,this.close)};n.prototype.close=function(t){function s(){i.trigger("closed").remove()}var n=e(this),r=n.attr("data-target"),i;r||(r=n.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,"")),i=e(r),t&&t.preventDefault(),i.length||(i=n.hasClass("alert")?n:n.parent()),i.trigger(t=e.Event("close"));if(t.isDefaultPrevented())return;i.removeClass("in"),e.support.transition&&i.hasClass("fade")?i.on(e.support.transition.end,s):s()};var r=e.fn.alert;e.fn.alert=function(t){return this.each(function(){var r=e(this),i=r.data("alert");i||r.data("alert",i=new n(this)),typeof t=="string"&&i[t].call(r)})},e.fn.alert.Constructor=n,e.fn.alert.noConflict=function(){return e.fn.alert=r,this},e(document).on("click.alert.data-api",t,n.prototype.close)}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.button.defaults,n)};t.prototype.setState=function(e){var t="disabled",n=this.$element,r=n.data(),i=n.is("input")?"val":"html";e+="Text",r.resetText||n.data("resetText",n[i]()),n[i](r[e]||this.options[e]),setTimeout(function(){e=="loadingText"?n.addClass(t).attr(t,t):n.removeClass(t).removeAttr(t)},0)},t.prototype.toggle=function(){var e=this.$element.closest('[data-toggle="buttons-radio"]');e&&e.find(".active").removeClass("active"),this.$element.toggleClass("active")};var n=e.fn.button;e.fn.button=function(n){return this.each(function(){var r=e(this),i=r.data("button"),s=typeof n=="object"&&n;i||r.data("button",i=new t(this,s)),n=="toggle"?i.toggle():n&&i.setState(n)})},e.fn.button.defaults={loadingText:"loading..."},e.fn.button.Constructor=t,e.fn.button.noConflict=function(){return e.fn.button=n,this},e(document).on("click.button.data-api","[data-toggle^=button]",function(t){var n=e(t.target);n.hasClass("btn")||(n=n.closest(".btn")),n.button("toggle")})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.$indicators=this.$element.find(".carousel-indicators"),this.options=n,this.options.pause=="hover"&&this.$element.on("mouseenter",e.proxy(this.pause,this)).on("mouseleave",e.proxy(this.cycle,this))};t.prototype={cycle:function(t){return t||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(e.proxy(this.next,this),this.options.interval)),this},getActiveIndex:function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},to:function(t){var n=this.getActiveIndex(),r=this;if(t>this.$items.length-1||t<0)return;return this.sliding?this.$element.one("slid",function(){r.to(t)}):n==t?this.pause().cycle():this.slide(t>n?"next":"prev",e(this.$items[t]))},pause:function(t){return t||(this.paused=!0),this.$element.find(".next, .prev").length&&e.support.transition.end&&(this.$element.trigger(e.support.transition.end),this.cycle(!0)),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(t,n){var r=this.$element.find(".item.active"),i=n||r[t](),s=this.interval,o=t=="next"?"left":"right",u=t=="next"?"first":"last",a=this,f;this.sliding=!0,s&&this.pause(),i=i.length?i:this.$element.find(".item")[u](),f=e.Event("slide",{relatedTarget:i[0],direction:o});if(i.hasClass("active"))return;this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var t=e(a.$indicators.children()[a.getActiveIndex()]);t&&t.addClass("active")}));if(e.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(f);if(f.isDefaultPrevented())return;i.addClass(t),i[0].offsetWidth,r.addClass(o),i.addClass(o),this.$element.one(e.support.transition.end,function(){i.removeClass([t,o].join(" ")).addClass("active"),r.removeClass(["active",o].join(" ")),a.sliding=!1,setTimeout(function(){a.$element.trigger("slid")},0)})}else{this.$element.trigger(f);if(f.isDefaultPrevented())return;r.removeClass("active"),i.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return s&&this.cycle(),this}};var n=e.fn.carousel;e.fn.carousel=function(n){return this.each(function(){var r=e(this),i=r.data("carousel"),s=e.extend({},e.fn.carousel.defaults,typeof n=="object"&&n),o=typeof n=="string"?n:s.slide;i||r.data("carousel",i=new t(this,s)),typeof n=="number"?i.to(n):o?i[o]():s.interval&&i.pause().cycle()})},e.fn.carousel.defaults={interval:5e3,pause:"hover"},e.fn.carousel.Constructor=t,e.fn.carousel.noConflict=function(){return e.fn.carousel=n,this},e(document).on("click.carousel.data-api","[data-slide], [data-slide-to]",function(t){var n=e(this),r,i=e(n.attr("data-target")||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,"")),s=e.extend({},i.data(),n.data()),o;i.carousel(s),(o=n.attr("data-slide-to"))&&i.data("carousel").pause().to(o).cycle(),t.preventDefault()})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.collapse.defaults,n),this.options.parent&&(this.$parent=e(this.options.parent)),this.options.toggle&&this.toggle()};t.prototype={constructor:t,dimension:function(){var e=this.$element.hasClass("width");return e?"width":"height"},show:function(){var t,n,r,i;if(this.transitioning||this.$element.hasClass("in"))return;t=this.dimension(),n=e.camelCase(["scroll",t].join("-")),r=this.$parent&&this.$parent.find("> .accordion-group > .in");if(r&&r.length){i=r.data("collapse");if(i&&i.transitioning)return;r.collapse("hide"),i||r.data("collapse",null)}this.$element[t](0),this.transition("addClass",e.Event("show"),"shown"),e.support.transition&&this.$element[t](this.$element[0][n])},hide:function(){var t;if(this.transitioning||!this.$element.hasClass("in"))return;t=this.dimension(),this.reset(this.$element[t]()),this.transition("removeClass",e.Event("hide"),"hidden"),this.$element[t](0)},reset:function(e){var t=this.dimension();return this.$element.removeClass("collapse")[t](e||"auto")[0].offsetWidth,this.$element[e!==null?"addClass":"removeClass"]("collapse"),this},transition:function(t,n,r){var i=this,s=function(){n.type=="show"&&i.reset(),i.transitioning=0,i.$element.trigger(r)};this.$element.trigger(n);if(n.isDefaultPrevented())return;this.transitioning=1,this.$element[t]("in"),e.support.transition&&this.$element.hasClass("collapse")?this.$element.one(e.support.transition.end,s):s()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var n=e.fn.collapse;e.fn.collapse=function(n){return this.each(function(){var r=e(this),i=r.data("collapse"),s=e.extend({},e.fn.collapse.defaults,r.data(),typeof n=="object"&&n);i||r.data("collapse",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.collapse.defaults={toggle:!0},e.fn.collapse.Constructor=t,e.fn.collapse.noConflict=function(){return e.fn.collapse=n,this},e(document).on("click.collapse.data-api","[data-toggle=collapse]",function(t){var n=e(this),r,i=n.attr("data-target")||t.preventDefault()||(r=n.attr("href"))&&r.replace(/.*(?=#[^\s]+$)/,""),s=e(i).data("collapse")?"toggle":n.data();n[e(i).hasClass("in")?"addClass":"removeClass"]("collapsed"),e(i).collapse(s)})}(window.jQuery),!function(e){"use strict";function r(){e(".dropdown-backdrop").remove(),e(t).each(function(){i(e(this)).removeClass("open")})}function i(t){var n=t.attr("data-target"),r;n||(n=t.attr("href"),n=n&&/#/.test(n)&&n.replace(/.*(?=#[^\s]*$)/,"")),r=n&&e(n);if(!r||!r.length)r=t.parent();return r}var t="[data-toggle=dropdown]",n=function(t){var n=e(t).on("click.dropdown.data-api",this.toggle);e("html").on("click.dropdown.data-api",function(){n.parent().removeClass("open")})};n.prototype={constructor:n,toggle:function(t){var n=e(this),s,o;if(n.is(".disabled, :disabled"))return;return s=i(n),o=s.hasClass("open"),r(),o||("ontouchstart"in document.documentElement&&e('<div class="dropdown-backdrop"/>').insertBefore(e(this)).on("click",r),s.toggleClass("open")),n.focus(),!1},keydown:function(n){var r,s,o,u,a,f;if(!/(38|40|27)/.test(n.keyCode))return;r=e(this),n.preventDefault(),n.stopPropagation();if(r.is(".disabled, :disabled"))return;u=i(r),a=u.hasClass("open");if(!a||a&&n.keyCode==27)return n.which==27&&u.find(t).focus(),r.click();s=e("[role=menu] li:not(.divider):visible a",u);if(!s.length)return;f=s.index(s.filter(":focus")),n.keyCode==38&&f>0&&f--,n.keyCode==40&&f<s.length-1&&f++,~f||(f=0),s.eq(f).focus()}};var s=e.fn.dropdown;e.fn.dropdown=function(t){return this.each(function(){var r=e(this),i=r.data("dropdown");i||r.data("dropdown",i=new n(this)),typeof t=="string"&&i[t].call(r)})},e.fn.dropdown.Constructor=n,e.fn.dropdown.noConflict=function(){return e.fn.dropdown=s,this},e(document).on("click.dropdown.data-api",r).on("click.dropdown.data-api",".dropdown form",function(e){e.stopPropagation()}).on("click.dropdown.data-api",t,n.prototype.toggle).on("keydown.dropdown.data-api",t+", [role=menu]",n.prototype.keydown)}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.options=n,this.$element=e(t).delegate('[data-dismiss="modal"]',"click.dismiss.modal",e.proxy(this.hide,this)),this.options.remote&&this.$element.find(".modal-body").load(this.options.remote)};t.prototype={constructor:t,toggle:function(){return this[this.isShown?"hide":"show"]()},show:function(){var t=this,n=e.Event("show");this.$element.trigger(n);if(this.isShown||n.isDefaultPrevented())return;this.isShown=!0,this.escape(),this.backdrop(function(){var n=e.support.transition&&t.$element.hasClass("fade");t.$element.parent().length||t.$element.appendTo(document.body),t.$element.show(),n&&t.$element[0].offsetWidth,t.$element.addClass("in").attr("aria-hidden",!1),t.enforceFocus(),n?t.$element.one(e.support.transition.end,function(){t.$element.focus().trigger("shown")}):t.$element.focus().trigger("shown")})},hide:function(t){t&&t.preventDefault();var n=this;t=e.Event("hide"),this.$element.trigger(t);if(!this.isShown||t.isDefaultPrevented())return;this.isShown=!1,this.escape(),e(document).off("focusin.modal"),this.$element.removeClass("in").attr("aria-hidden",!0),e.support.transition&&this.$element.hasClass("fade")?this.hideWithTransition():this.hideModal()},enforceFocus:function(){var t=this;e(document).on("focusin.modal",function(e){t.$element[0]!==e.target&&!t.$element.has(e.target).length&&t.$element.focus()})},escape:function(){var e=this;this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.modal",function(t){t.which==27&&e.hide()}):this.isShown||this.$element.off("keyup.dismiss.modal")},hideWithTransition:function(){var t=this,n=setTimeout(function(){t.$element.off(e.support.transition.end),t.hideModal()},500);this.$element.one(e.support.transition.end,function(){clearTimeout(n),t.hideModal()})},hideModal:function(){var e=this;this.$element.hide(),this.backdrop(function(){e.removeBackdrop(),e.$element.trigger("hidden")})},removeBackdrop:function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},backdrop:function(t){var n=this,r=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var i=e.support.transition&&r;this.$backdrop=e('<div class="modal-backdrop '+r+'" />').appendTo(document.body),this.$backdrop.click(this.options.backdrop=="static"?e.proxy(this.$element[0].focus,this.$element[0]):e.proxy(this.hide,this)),i&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in");if(!t)return;i?this.$backdrop.one(e.support.transition.end,t):t()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),e.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(e.support.transition.end,t):t()):t&&t()}};var n=e.fn.modal;e.fn.modal=function(n){return this.each(function(){var r=e(this),i=r.data("modal"),s=e.extend({},e.fn.modal.defaults,r.data(),typeof n=="object"&&n);i||r.data("modal",i=new t(this,s)),typeof n=="string"?i[n]():s.show&&i.show()})},e.fn.modal.defaults={backdrop:!0,keyboard:!0,show:!0},e.fn.modal.Constructor=t,e.fn.modal.noConflict=function(){return e.fn.modal=n,this},e(document).on("click.modal.data-api",'[data-toggle="modal"]',function(t){var n=e(this),r=n.attr("href"),i=e(n.attr("data-target")||r&&r.replace(/.*(?=#[^\s]+$)/,"")),s=i.data("modal")?"toggle":e.extend({remote:!/#/.test(r)&&r},i.data(),n.data());t.preventDefault(),i.modal(s).one("hide",function(){n.focus()})})}(window.jQuery),!function(e){"use strict";var t=function(e,t){this.init("tooltip",e,t)};t.prototype={constructor:t,init:function(t,n,r){var i,s,o,u,a;this.type=t,this.$element=e(n),this.options=this.getOptions(r),this.enabled=!0,o=this.options.trigger.split(" ");for(a=o.length;a--;)u=o[a],u=="click"?this.$element.on("click."+this.type,this.options.selector,e.proxy(this.toggle,this)):u!="manual"&&(i=u=="hover"?"mouseenter":"focus",s=u=="hover"?"mouseleave":"blur",this.$element.on(i+"."+this.type,this.options.selector,e.proxy(this.enter,this)),this.$element.on(s+"."+this.type,this.options.selector,e.proxy(this.leave,this)));this.options.selector?this._options=e.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(t){return t=e.extend({},e.fn[this.type].defaults,this.$element.data(),t),t.delay&&typeof t.delay=="number"&&(t.delay={show:t.delay,hide:t.delay}),t},enter:function(t){var n=e.fn[this.type].defaults,r={},i;this._options&&e.each(this._options,function(e,t){n[e]!=t&&(r[e]=t)},this),i=e(t.currentTarget)[this.type](r).data(this.type);if(!i.options.delay||!i.options.delay.show)return i.show();clearTimeout(this.timeout),i.hoverState="in",this.timeout=setTimeout(function(){i.hoverState=="in"&&i.show()},i.options.delay.show)},leave:function(t){var n=e(t.currentTarget)[this.type](this._options).data(this.type);this.timeout&&clearTimeout(this.timeout);if(!n.options.delay||!n.options.delay.hide)return n.hide();n.hoverState="out",this.timeout=setTimeout(function(){n.hoverState=="out"&&n.hide()},n.options.delay.hide)},show:function(){var t,n,r,i,s,o,u=e.Event("show");if(this.hasContent()&&this.enabled){this.$element.trigger(u);if(u.isDefaultPrevented())return;t=this.tip(),this.setContent(),this.options.animation&&t.addClass("fade"),s=typeof this.options.placement=="function"?this.options.placement.call(this,t[0],this.$element[0]):this.options.placement,t.detach().css({top:0,left:0,display:"block"}),this.options.container?t.appendTo(this.options.container):t.insertAfter(this.$element),n=this.getPosition(),r=t[0].offsetWidth,i=t[0].offsetHeight;switch(s){case"bottom":o={top:n.top+n.height,left:n.left+n.width/2-r/2};break;case"top":o={top:n.top-i,left:n.left+n.width/2-r/2};break;case"left":o={top:n.top+n.height/2-i/2,left:n.left-r};break;case"right":o={top:n.top+n.height/2-i/2,left:n.left+n.width}}this.applyPlacement(o,s),this.$element.trigger("shown")}},applyPlacement:function(e,t){var n=this.tip(),r=n[0].offsetWidth,i=n[0].offsetHeight,s,o,u,a;n.offset(e).addClass(t).addClass("in"),s=n[0].offsetWidth,o=n[0].offsetHeight,t=="top"&&o!=i&&(e.top=e.top+i-o,a=!0),t=="bottom"||t=="top"?(u=0,e.left<0&&(u=e.left*-2,e.left=0,n.offset(e),s=n[0].offsetWidth,o=n[0].offsetHeight),this.replaceArrow(u-r+s,s,"left")):this.replaceArrow(o-i,o,"top"),a&&n.offset(e)},replaceArrow:function(e,t,n){this.arrow().css(n,e?50*(1-e/t)+"%":"")},setContent:function(){var e=this.tip(),t=this.getTitle();e.find(".tooltip-inner")[this.options.html?"html":"text"](t),e.removeClass("fade in top bottom left right")},hide:function(){function i(){var t=setTimeout(function(){n.off(e.support.transition.end).detach()},500);n.one(e.support.transition.end,function(){clearTimeout(t),n.detach()})}var t=this,n=this.tip(),r=e.Event("hide");this.$element.trigger(r);if(r.isDefaultPrevented())return;return n.removeClass("in"),e.support.transition&&this.$tip.hasClass("fade")?i():n.detach(),this.$element.trigger("hidden"),this},fixTitle:function(){var e=this.$element;(e.attr("title")||typeof e.attr("data-original-title")!="string")&&e.attr("data-original-title",e.attr("title")||"").attr("title","")},hasContent:function(){return this.getTitle()},getPosition:function(){var t=this.$element[0];return e.extend({},typeof t.getBoundingClientRect=="function"?t.getBoundingClientRect():{width:t.offsetWidth,height:t.offsetHeight},this.$element.offset())},getTitle:function(){var e,t=this.$element,n=this.options;return e=t.attr("data-original-title")||(typeof n.title=="function"?n.title.call(t[0]):n.title),e},tip:function(){return this.$tip=this.$tip||e(this.options.template)},arrow:function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(t){var n=t?e(t.currentTarget)[this.type](this._options).data(this.type):this;n.tip().hasClass("in")?n.hide():n.show()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var n=e.fn.tooltip;e.fn.tooltip=function(n){return this.each(function(){var r=e(this),i=r.data("tooltip"),s=typeof n=="object"&&n;i||r.data("tooltip",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.tooltip.Constructor=t,e.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1},e.fn.tooltip.noConflict=function(){return e.fn.tooltip=n,this}}(window.jQuery),!function(e){"use strict";var t=function(e,t){this.init("popover",e,t)};t.prototype=e.extend({},e.fn.tooltip.Constructor.prototype,{constructor:t,setContent:function(){var e=this.tip(),t=this.getTitle(),n=this.getContent();e.find(".popover-title")[this.options.html?"html":"text"](t),e.find(".popover-content")[this.options.html?"html":"text"](n),e.removeClass("fade top bottom left right in")},hasContent:function(){return this.getTitle()||this.getContent()},getContent:function(){var e,t=this.$element,n=this.options;return e=(typeof n.content=="function"?n.content.call(t[0]):n.content)||t.attr("data-content"),e},tip:function(){return this.$tip||(this.$tip=e(this.options.template)),this.$tip},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}});var n=e.fn.popover;e.fn.popover=function(n){return this.each(function(){var r=e(this),i=r.data("popover"),s=typeof n=="object"&&n;i||r.data("popover",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.popover.Constructor=t,e.fn.popover.defaults=e.extend({},e.fn.tooltip.defaults,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),e.fn.popover.noConflict=function(){return e.fn.popover=n,this}}(window.jQuery),!function(e){"use strict";function t(t,n){var r=e.proxy(this.process,this),i=e(t).is("body")?e(window):e(t),s;this.options=e.extend({},e.fn.scrollspy.defaults,n),this.$scrollElement=i.on("scroll.scroll-spy.data-api",r),this.selector=(this.options.target||(s=e(t).attr("href"))&&s.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.$body=e("body"),this.refresh(),this.process()}t.prototype={constructor:t,refresh:function(){var t=this,n;this.offsets=e([]),this.targets=e([]),n=this.$body.find(this.selector).map(function(){var n=e(this),r=n.data("target")||n.attr("href"),i=/^#\w/.test(r)&&e(r);return i&&i.length&&[[i.position().top+(!e.isWindow(t.$scrollElement.get(0))&&t.$scrollElement.scrollTop()),r]]||null}).sort(function(e,t){return e[0]-t[0]}).each(function(){t.offsets.push(this[0]),t.targets.push(this[1])})},process:function(){var e=this.$scrollElement.scrollTop()+this.options.offset,t=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,n=t-this.$scrollElement.height(),r=this.offsets,i=this.targets,s=this.activeTarget,o;if(e>=n)return s!=(o=i.last()[0])&&this.activate(o);for(o=r.length;o--;)s!=i[o]&&e>=r[o]&&(!r[o+1]||e<=r[o+1])&&this.activate(i[o])},activate:function(t){var n,r;this.activeTarget=t,e(this.selector).parent(".active").removeClass("active"),r=this.selector+'[data-target="'+t+'"],'+this.selector+'[href="'+t+'"]',n=e(r).parent("li").addClass("active"),n.parent(".dropdown-menu").length&&(n=n.closest("li.dropdown").addClass("active")),n.trigger("activate")}};var n=e.fn.scrollspy;e.fn.scrollspy=function(n){return this.each(function(){var r=e(this),i=r.data("scrollspy"),s=typeof n=="object"&&n;i||r.data("scrollspy",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.scrollspy.Constructor=t,e.fn.scrollspy.defaults={offset:10},e.fn.scrollspy.noConflict=function(){return e.fn.scrollspy=n,this},e(window).on("load",function(){e('[data-spy="scroll"]').each(function(){var t=e(this);t.scrollspy(t.data())})})}(window.jQuery),!function(e){"use strict";var t=function(t){this.element=e(t)};t.prototype={constructor:t,show:function(){var t=this.element,n=t.closest("ul:not(.dropdown-menu)"),r=t.attr("data-target"),i,s,o;r||(r=t.attr("href"),r=r&&r.replace(/.*(?=#[^\s]*$)/,""));if(t.parent("li").hasClass("active"))return;i=n.find(".active:last a")[0],o=e.Event("show",{relatedTarget:i}),t.trigger(o);if(o.isDefaultPrevented())return;s=e(r),this.activate(t.parent("li"),n),this.activate(s,s.parent(),function(){t.trigger({type:"shown",relatedTarget:i})})},activate:function(t,n,r){function o(){i.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),t.addClass("active"),s?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade"),t.parent(".dropdown-menu")&&t.closest("li.dropdown").addClass("active"),r&&r()}var i=n.find("> .active"),s=r&&e.support.transition&&i.hasClass("fade");s?i.one(e.support.transition.end,o):o(),i.removeClass("in")}};var n=e.fn.tab;e.fn.tab=function(n){return this.each(function(){var r=e(this),i=r.data("tab");i||r.data("tab",i=new t(this)),typeof n=="string"&&i[n]()})},e.fn.tab.Constructor=t,e.fn.tab.noConflict=function(){return e.fn.tab=n,this},e(document).on("click.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(t){t.preventDefault(),e(this).tab("show")})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.$element=e(t),this.options=e.extend({},e.fn.typeahead.defaults,n),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.highlighter=this.options.highlighter||this.highlighter,this.updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=e(this.options.menu),this.shown=!1,this.listen()};t.prototype={constructor:t,select:function(){var e=this.$menu.find(".active").attr("data-value");return this.$element.val(this.updater(e)).change(),this.hide()},updater:function(e){return e},show:function(){var t=e.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});return this.$menu.insertAfter(this.$element).css({top:t.top+t.height,left:t.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(t){var n;return this.query=this.$element.val(),!this.query||this.query.length<this.options.minLength?this.shown?this.hide():this:(n=e.isFunction(this.source)?this.source(this.query,e.proxy(this.process,this)):this.source,n?this.process(n):this)},process:function(t){var n=this;return t=e.grep(t,function(e){return n.matcher(e)}),t=this.sorter(t),t.length?this.render(t.slice(0,this.options.items)).show():this.shown?this.hide():this},matcher:function(e){return~e.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(e){var t=[],n=[],r=[],i;while(i=e.shift())i.toLowerCase().indexOf(this.query.toLowerCase())?~i.indexOf(this.query)?n.push(i):r.push(i):t.push(i);return t.concat(n,r)},highlighter:function(e){var t=this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&");return e.replace(new RegExp("("+t+")","ig"),function(e,t){return"<strong>"+t+"</strong>"})},render:function(t){var n=this;return t=e(t).map(function(t,r){return t=e(n.options.item).attr("data-value",r),t.find("a").html(n.highlighter(r)),t[0]}),t.first().addClass("active"),this.$menu.html(t),this},next:function(t){var n=this.$menu.find(".active").removeClass("active"),r=n.next();r.length||(r=e(this.$menu.find("li")[0])),r.addClass("active")},prev:function(e){var t=this.$menu.find(".active").removeClass("active"),n=t.prev();n.length||(n=this.$menu.find("li").last()),n.addClass("active")},listen:function(){this.$element.on("focus",e.proxy(this.focus,this)).on("blur",e.proxy(this.blur,this)).on("keypress",e.proxy(this.keypress,this)).on("keyup",e.proxy(this.keyup,this)),this.eventSupported("keydown")&&this.$element.on("keydown",e.proxy(this.keydown,this)),this.$menu.on("click",e.proxy(this.click,this)).on("mouseenter","li",e.proxy(this.mouseenter,this)).on("mouseleave","li",e.proxy(this.mouseleave,this))},eventSupported:function(e){var t=e in this.$element;return t||(this.$element.setAttribute(e,"return;"),t=typeof this.$element[e]=="function"),t},move:function(e){if(!this.shown)return;switch(e.keyCode){case 9:case 13:case 27:e.preventDefault();break;case 38:e.preventDefault(),this.prev();break;case 40:e.preventDefault(),this.next()}e.stopPropagation()},keydown:function(t){this.suppressKeyPressRepeat=~e.inArray(t.keyCode,[40,38,9,13,27]),this.move(t)},keypress:function(e){if(this.suppressKeyPressRepeat)return;this.move(e)},keyup:function(e){switch(e.keyCode){case 40:case 38:case 16:case 17:case 18:break;case 9:case 13:if(!this.shown)return;this.select();break;case 27:if(!this.shown)return;this.hide();break;default:this.lookup()}e.stopPropagation(),e.preventDefault()},focus:function(e){this.focused=!0},blur:function(e){this.focused=!1,!this.mousedover&&this.shown&&this.hide()},click:function(e){e.stopPropagation(),e.preventDefault(),this.select(),this.$element.focus()},mouseenter:function(t){this.mousedover=!0,this.$menu.find(".active").removeClass("active"),e(t.currentTarget).addClass("active")},mouseleave:function(e){this.mousedover=!1,!this.focused&&this.shown&&this.hide()}};var n=e.fn.typeahead;e.fn.typeahead=function(n){return this.each(function(){var r=e(this),i=r.data("typeahead"),s=typeof n=="object"&&n;i||r.data("typeahead",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.typeahead.defaults={source:[],items:8,menu:'<ul class="typeahead dropdown-menu"></ul>',item:'<li><a href="#"></a></li>',minLength:1},e.fn.typeahead.Constructor=t,e.fn.typeahead.noConflict=function(){return e.fn.typeahead=n,this},e(document).on("focus.typeahead.data-api",'[data-provide="typeahead"]',function(t){var n=e(this);if(n.data("typeahead"))return;n.typeahead(n.data())})}(window.jQuery),!function(e){"use strict";var t=function(t,n){this.options=e.extend({},e.fn.affix.defaults,n),this.$window=e(window).on("scroll.affix.data-api",e.proxy(this.checkPosition,this)).on("click.affix.data-api",e.proxy(function(){setTimeout(e.proxy(this.checkPosition,this),1)},this)),this.$element=e(t),this.checkPosition()};t.prototype.checkPosition=function(){if(!this.$element.is(":visible"))return;var t=e(document).height(),n=this.$window.scrollTop(),r=this.$element.offset(),i=this.options.offset,s=i.bottom,o=i.top,u="affix affix-top affix-bottom",a;typeof i!="object"&&(s=o=i),typeof o=="function"&&(o=i.top()),typeof s=="function"&&(s=i.bottom()),a=this.unpin!=null&&n+this.unpin<=r.top?!1:s!=null&&r.top+this.$element.height()>=t-s?"bottom":o!=null&&n<=o?"top":!1;if(this.affixed===a)return;this.affixed=a,this.unpin=a=="bottom"?r.top-n:null,this.$element.removeClass(u).addClass("affix"+(a?"-"+a:""))};var n=e.fn.affix;e.fn.affix=function(n){return this.each(function(){var r=e(this),i=r.data("affix"),s=typeof n=="object"&&n;i||r.data("affix",i=new t(this,s)),typeof n=="string"&&i[n]()})},e.fn.affix.Constructor=t,e.fn.affix.defaults={offset:0},e.fn.affix.noConflict=function(){return e.fn.affix=n,this},e(window).on("load",function(){e('[data-spy="affix"]').each(function(){var t=e(this),n=t.data();n.offset=n.offset||{},n.offsetBottom&&(n.offset.bottom=n.offsetBottom),n.offsetTop&&(n.offset.top=n.offsetTop),t.affix(n)})})}(window.jQuery); \ No newline at end of file 6if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>2)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.6",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.6",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.6",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.6",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",c).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in"),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a(document.createElement("div")).addClass("modal-backdrop "+e).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",a,b)};c.VERSION="3.3.6",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-m<o.top?"bottom":"right"==h&&k.right+l>o.width?"left":"left"==h&&k.left-l<o.left?"right":h,f.removeClass(n).addClass(h)}var p=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(p,h);var q=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",q).emulateTransitionEnd(c.TRANSITION_DURATION):q()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top+=g,b.left+=h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.6",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.6",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),
7d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.6",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.6",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); \ No newline at end of file
diff --git a/bitbake/lib/toaster/toastergui/static/js/customrecipe.js b/bitbake/lib/toaster/toastergui/static/js/customrecipe.js
index 1c0ef9e37d..505a81ce60 100644
--- a/bitbake/lib/toaster/toastergui/static/js/customrecipe.js
+++ b/bitbake/lib/toaster/toastergui/static/js/customrecipe.js
@@ -158,7 +158,7 @@ function customRecipePageInit(ctx) {
158 msg += " <strong>" + dep.name + "</strong>"; 158 msg += " <strong>" + dep.name + "</strong>";
159 159
160 /* Add any cells currently in view to the list of cells which get 160 /* Add any cells currently in view to the list of cells which get
161 * an inline notification inside them and which change add/rm state 161 * an list-inline notification inside them and which change add/rm state
162 */ 162 */
163 depBtnCell = $("#package-btn-cell-" + dep.pk); 163 depBtnCell = $("#package-btn-cell-" + dep.pk);
164 btnCell = btnCell.add(depBtnCell); 164 btnCell = btnCell.add(depBtnCell);
@@ -208,7 +208,7 @@ function customRecipePageInit(ctx) {
208 } 208 }
209 209
210 /* Add any cells currently in view to the list of cells which get 210 /* Add any cells currently in view to the list of cells which get
211 * an inline notification inside them and which change add/rm state 211 * an list-inline notification inside them and which change add/rm state
212 */ 212 */
213 depBtnCell = $("#package-btn-cell-" + dep.pk); 213 depBtnCell = $("#package-btn-cell-" + dep.pk);
214 btnCell = btnCell.add(depBtnCell); 214 btnCell = btnCell.add(depBtnCell);
diff --git a/bitbake/lib/toaster/toastergui/static/js/importlayer.js b/bitbake/lib/toaster/toastergui/static/js/importlayer.js
index 5a59799bc5..2f59567133 100644
--- a/bitbake/lib/toaster/toastergui/static/js/importlayer.js
+++ b/bitbake/lib/toaster/toastergui/static/js/importlayer.js
@@ -46,7 +46,7 @@ function importLayerPageInit (ctx) {
46 currentLayerDepSelection = choice; 46 currentLayerDepSelection = choice;
47 } 47 }
48 else { 48 else {
49 layerDepBtn.attr("disabled", "disabled"); 49 layerDepBtn.attr("disabled","disabled");
50 currentLayerDepSelection = undefined; 50 currentLayerDepSelection = undefined;
51 } 51 }
52 }); 52 });
@@ -70,7 +70,7 @@ function importLayerPageInit (ctx) {
70 layerDeps[currentLayerDepSelection.id] = currentLayerDepSelection; 70 layerDeps[currentLayerDepSelection.id] = currentLayerDepSelection;
71 71
72 /* Make a list item for the new layer dependency */ 72 /* Make a list item for the new layer dependency */
73 var newLayerDep = $("<li><a></a><span class=\"icon-trash\" data-toggle=\"tooltip\" title=\"Delete\"></span></li>"); 73 var newLayerDep = $("<li><a></a><span class=\"glyphicon glyphicon-trash\" data-toggle=\"tooltip\" title=\"Remove\"></span></li>");
74 74
75 newLayerDep.data('layer-id', currentLayerDepSelection.id); 75 newLayerDep.data('layer-id', currentLayerDepSelection.id);
76 newLayerDep.children("span").tooltip(); 76 newLayerDep.children("span").tooltip();
@@ -105,7 +105,8 @@ function importLayerPageInit (ctx) {
105 }, null); 105 }, null);
106 }); 106 });
107 107
108 importAndAddBtn.click(function(){ 108 importAndAddBtn.click(function(e){
109 e.preventDefault();
109 /* This is a list of the names from layerDeps for the layer deps 110 /* This is a list of the names from layerDeps for the layer deps
110 * modal dialog body 111 * modal dialog body
111 */ 112 */
@@ -262,7 +263,7 @@ function importLayerPageInit (ctx) {
262 263
263 layerNameInput.on('input', function() { 264 layerNameInput.on('input', function() {
264 if ($(this).val() && !validLayerName.test($(this).val())){ 265 if ($(this).val() && !validLayerName.test($(this).val())){
265 layerNameCtrl.addClass("error") 266 layerNameCtrl.addClass("has-error")
266 $("#invalid-layer-name-hint").show(); 267 $("#invalid-layer-name-hint").show();
267 enable_import_btn(false); 268 enable_import_btn(false);
268 return; 269 return;
@@ -279,7 +280,7 @@ function importLayerPageInit (ctx) {
279 * reason. 280 * reason.
280 */ 281 */
281 if (!duplicatedLayerName.is(":visible")) 282 if (!duplicatedLayerName.is(":visible"))
282 layerNameCtrl.removeClass("error") 283 layerNameCtrl.removeClass("has-error")
283 284
284 $("#invalid-layer-name-hint").hide(); 285 $("#invalid-layer-name-hint").hide();
285 check_form(); 286 check_form();
diff --git a/bitbake/lib/toaster/toastergui/static/js/layerDepsModal.js b/bitbake/lib/toaster/toastergui/static/js/layerDepsModal.js
index 825f9dccd5..b79049e98c 100644
--- a/bitbake/lib/toaster/toastergui/static/js/layerDepsModal.js
+++ b/bitbake/lib/toaster/toastergui/static/js/layerDepsModal.js
@@ -33,11 +33,11 @@ function showLayerDepsModal(layer, dependencies, title, body, addToProject, succ
33 33
34 var deplistHtml = ""; 34 var deplistHtml = "";
35 for (var i = 0; i < dependencies.length; i++) { 35 for (var i = 0; i < dependencies.length; i++) {
36 deplistHtml += "<li><label class=\"checkbox\"><input name=\"dependencies\" value=\""; 36 deplistHtml += "<li><div class=\"checkbox\"><label><input name=\"dependencies\" value=\"";
37 deplistHtml += dependencies[i].id; 37 deplistHtml += dependencies[i].id;
38 deplistHtml +="\" type=\"checkbox\" checked=\"checked\"/>"; 38 deplistHtml +="\" type=\"checkbox\" checked=\"checked\"/>";
39 deplistHtml += dependencies[i].name; 39 deplistHtml += dependencies[i].name;
40 deplistHtml += "</label></li>"; 40 deplistHtml += "</label></div></li>";
41 } 41 }
42 $('#dependencies-list').html(deplistHtml); 42 $('#dependencies-list').html(deplistHtml);
43 43
diff --git a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
index d545406262..a56087b738 100644
--- a/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
+++ b/bitbake/lib/toaster/toastergui/static/js/layerdetails.js
@@ -18,6 +18,13 @@ function layerDetailsPageInit (ctx) {
18 layerDepBtn.removeAttr("disabled"); 18 layerDepBtn.removeAttr("disabled");
19 }); 19 });
20 20
21 /* disable the add layer button if its input field is empty */
22 layerDepInput.on("keyup",function(){
23 if ($(this).val().length === 0) {
24 layerDepBtn.attr("disabled", "disabled");
25 }
26 });
27
21 $(window).on('hashchange', function(e){ 28 $(window).on('hashchange', function(e){
22 switch(window.location.hash){ 29 switch(window.location.hash){
23 case '#machines': 30 case '#machines':
@@ -76,7 +83,7 @@ function layerDetailsPageInit (ctx) {
76 83
77 addRemoveDep(currentLayerDepSelection.id, true, function(){ 84 addRemoveDep(currentLayerDepSelection.id, true, function(){
78 /* Make a list item for the new layer dependency */ 85 /* Make a list item for the new layer dependency */
79 var newLayerDep = $("<li><a></a><span class=\"icon-trash\" data-toggle=\"tooltip\" title=\"Delete\"></span></li>"); 86 var newLayerDep = $("<li><a></a><span class=\"glyphicon glyphicon-trash\" data-toggle=\"tooltip\" title=\"Delete\"></span></li>");
80 87
81 newLayerDep.data('layer-id', currentLayerDepSelection.id); 88 newLayerDep.data('layer-id', currentLayerDepSelection.id);
82 newLayerDep.children("span").tooltip(); 89 newLayerDep.children("span").tooltip();
@@ -94,11 +101,11 @@ function layerDetailsPageInit (ctx) {
94 /* Clear the current selection */ 101 /* Clear the current selection */
95 layerDepInput.val(""); 102 layerDepInput.val("");
96 currentLayerDepSelection = undefined; 103 currentLayerDepSelection = undefined;
97 layerDepBtn.attr("disabled","disabled"); 104 layerDepBtn.attr("disabled", "disabled");
98 }); 105 });
99 }); 106 });
100 107
101 $(".icon-pencil").click(function (){ 108 $(".glyphicon-edit").click(function (){
102 var mParent = $(this).parent("dd"); 109 var mParent = $(this).parent("dd");
103 mParent.prev().css("margin-top", "10px"); 110 mParent.prev().css("margin-top", "10px");
104 mParent.children("form").slideDown(); 111 mParent.children("form").slideDown();
@@ -106,8 +113,12 @@ function layerDetailsPageInit (ctx) {
106 currentVal.hide(); 113 currentVal.hide();
107 /* Set the current value to the input field */ 114 /* Set the current value to the input field */
108 mParent.find("textarea,input").val(currentVal.text()); 115 mParent.find("textarea,input").val(currentVal.text());
116 /* If the input field is empty, disable the submit button */
117 if ( mParent.find("textarea,input").val().length == 0 ) {
118 mParent.find(".change-btn").attr("disabled", "disabled");
119 }
109 /* Hides the "Not set" text */ 120 /* Hides the "Not set" text */
110 mParent.children(".muted").hide(); 121 mParent.children(".text-muted").hide();
111 /* We're editing so hide the delete icon */ 122 /* We're editing so hide the delete icon */
112 mParent.children(".delete-current-value").hide(); 123 mParent.children(".delete-current-value").hide();
113 mParent.find(".cancel").show(); 124 mParent.find(".cancel").show();
@@ -128,21 +139,21 @@ function layerDetailsPageInit (ctx) {
128 mParent.children(".current-value").show(); 139 mParent.children(".current-value").show();
129 /* Show the "Not set" text if we ended up with no value */ 140 /* Show the "Not set" text if we ended up with no value */
130 if (!mParent.children(".current-value").html()){ 141 if (!mParent.children(".current-value").html()){
131 mParent.children(".muted").fadeIn(); 142 mParent.children(".text-muted").fadeIn();
132 mParent.children(".delete-current-value").hide(); 143 mParent.children(".delete-current-value").hide();
133 } else { 144 } else {
134 mParent.children(".delete-current-value").show(); 145 mParent.children(".delete-current-value").show();
135 } 146 }
136 147
137 mParent.children(".icon-pencil").show(); 148 mParent.children(".glyphicon-edit").show();
138 mParent.prev().css("margin-top", "0px"); 149 mParent.prev().css("margin-top", "0");
139 }); 150 });
140 }); 151 });
141 152
142 function defaultAddBtnText(){ 153 function defaultAddBtnText(){
143 var text = " Add the "+ctx.layerVersion.name+" layer to your project"; 154 var text = " Add the "+ctx.layerVersion.name+" layer to your project";
144 addRmLayerBtn.text(text); 155 addRmLayerBtn.text(text);
145 addRmLayerBtn.prepend("<span class=\"icon-plus\"></span>"); 156 addRmLayerBtn.prepend("<span class=\"glyphicon glyphicon-plus\"></span>");
146 addRmLayerBtn.removeClass("btn-danger"); 157 addRmLayerBtn.removeClass("btn-danger");
147 } 158 }
148 159
@@ -159,7 +170,7 @@ function layerDetailsPageInit (ctx) {
159 var text = " Add the "+ctx.layerVersion.name+" layer to your project "+ 170 var text = " Add the "+ctx.layerVersion.name+" layer to your project "+
160 "to enable these recipes"; 171 "to enable these recipes";
161 addRmLayerBtn.text(text); 172 addRmLayerBtn.text(text);
162 addRmLayerBtn.prepend("<span class=\"icon-plus\"></span>"); 173 addRmLayerBtn.prepend("<span class=\"glyphicon glyphicon-plus\"></span>");
163 } else { 174 } else {
164 defaultAddBtnText(); 175 defaultAddBtnText();
165 } 176 }
@@ -177,7 +188,7 @@ function layerDetailsPageInit (ctx) {
177 $("#no-recipes-yet").hide(); 188 $("#no-recipes-yet").hide();
178 } 189 }
179 190
180 targetTab.removeClass("muted"); 191 targetTab.removeClass("text-muted");
181 if (window.location.hash === "#recipes"){ 192 if (window.location.hash === "#recipes"){
182 /* re run the machinesTabShow to update the text */ 193 /* re run the machinesTabShow to update the text */
183 targetsTabShow(); 194 targetsTabShow();
@@ -192,20 +203,20 @@ function layerDetailsPageInit (ctx) {
192 else 203 else
193 $("#no-machines-yet").hide(); 204 $("#no-machines-yet").hide();
194 205
195 machineTab.removeClass("muted"); 206 machineTab.removeClass("text-muted");
196 if (window.location.hash === "#machines"){ 207 if (window.location.hash === "#machines"){
197 /* re run the machinesTabShow to update the text */ 208 /* re run the machinesTabShow to update the text */
198 machinesTabShow(); 209 machinesTabShow();
199 } 210 }
200 211
201 $(".select-machine-btn").click(function(e){ 212 $(".select-machine-btn").click(function(e){
202 if ($(this).attr("disabled") === "disabled") 213 if ($(this).hasClass("disabled"))
203 e.preventDefault(); 214 e.preventDefault();
204 }); 215 });
205 216
206 }); 217 });
207 218
208 targetTab.on('show', targetsTabShow); 219 targetTab.on('show.bs.tab', targetsTabShow);
209 220
210 function machinesTabShow(){ 221 function machinesTabShow(){
211 if (!ctx.layerVersion.inCurrentPrj) { 222 if (!ctx.layerVersion.inCurrentPrj) {
@@ -213,7 +224,7 @@ function layerDetailsPageInit (ctx) {
213 var text = " Add the "+ctx.layerVersion.name+" layer to your project " + 224 var text = " Add the "+ctx.layerVersion.name+" layer to your project " +
214 "to enable these machines"; 225 "to enable these machines";
215 addRmLayerBtn.text(text); 226 addRmLayerBtn.text(text);
216 addRmLayerBtn.prepend("<span class=\"icon-plus\"></span>"); 227 addRmLayerBtn.prepend("<span class=\"glyphicon glyphicon-plus\"></span>");
217 } else { 228 } else {
218 defaultAddBtnText(); 229 defaultAddBtnText();
219 } 230 }
@@ -222,7 +233,7 @@ function layerDetailsPageInit (ctx) {
222 window.location.hash = "machines"; 233 window.location.hash = "machines";
223 } 234 }
224 235
225 machineTab.on('show', machinesTabShow); 236 machineTab.on('show.bs.tab', machinesTabShow);
226 237
227 $(".pagesize").change(function(){ 238 $(".pagesize").change(function(){
228 var search = libtoaster.parseUrlParams(); 239 var search = libtoaster.parseUrlParams();
@@ -239,17 +250,17 @@ function layerDetailsPageInit (ctx) {
239 250
240 if (added){ 251 if (added){
241 /* enable and switch all the button states */ 252 /* enable and switch all the button states */
242 $(".build-recipe-btn").removeAttr("disabled"); 253 $(".build-recipe-btn").removeClass("disabled");
243 $(".select-machine-btn").removeAttr("disabled"); 254 $(".select-machine-btn").removeClass("disabled");
244 addRmLayerBtn.addClass("btn-danger"); 255 addRmLayerBtn.addClass("btn-danger");
245 addRmLayerBtn.data('directive', "remove"); 256 addRmLayerBtn.data('directive', "remove");
246 addRmLayerBtn.text(" Remove the "+ctx.layerVersion.name+" layer from your project"); 257 addRmLayerBtn.text(" Remove the "+ctx.layerVersion.name+" layer from your project");
247 addRmLayerBtn.prepend("<span class=\"icon-trash\"></span>"); 258 addRmLayerBtn.prepend("<span class=\"glyphicon glyphicon-trash\"></span>");
248 259
249 } else { 260 } else {
250 /* disable and switch all the button states */ 261 /* disable and switch all the button states */
251 $(".build-recipe-btn").attr("disabled","disabled"); 262 $(".build-recipe-btn").addClass("disabled");
252 $(".select-machine-btn").attr("disabled", "disabled"); 263 $(".select-machine-btn").addClass("disabled");
253 addRmLayerBtn.removeClass("btn-danger"); 264 addRmLayerBtn.removeClass("btn-danger");
254 addRmLayerBtn.data('directive', "add"); 265 addRmLayerBtn.data('directive', "add");
255 266
@@ -257,7 +268,7 @@ function layerDetailsPageInit (ctx) {
257 * on which tab is currently visible. Unfortunately we can't just call 268 * on which tab is currently visible. Unfortunately we can't just call
258 * tab('show') as if it's already visible it doesn't run the event. 269 * tab('show') as if it's already visible it doesn't run the event.
259 */ 270 */
260 switch ($(".nav-pills .active a").prop('id')){ 271 switch ($(".nav-tabs .active a").prop('id')){
261 case 'machines-tab': 272 case 'machines-tab':
262 machinesTabShow(); 273 machinesTabShow();
263 break; 274 break;
@@ -286,7 +297,7 @@ function layerDetailsPageInit (ctx) {
286 297
287 setLayerInCurrentPrj(add); 298 setLayerInCurrentPrj(add);
288 299
289 $("#alert-area").show(); 300 libtoaster.showChangeNotification(alertMsg);
290 }); 301 });
291 }); 302 });
292 303
@@ -325,7 +336,7 @@ function layerDetailsPageInit (ctx) {
325 text = entryElement.val(); 336 text = entryElement.val();
326 337
327 /* Hide the "Not set" text if it's visible */ 338 /* Hide the "Not set" text if it's visible */
328 inputArea.find(".muted").hide(); 339 inputArea.find(".text-muted").hide();
329 inputArea.find(".current-value").text(text); 340 inputArea.find(".current-value").text(text);
330 /* Same behaviour as cancel in that we hide the form/show current 341 /* Same behaviour as cancel in that we hide the form/show current
331 * value. 342 * value.
@@ -343,9 +354,9 @@ function layerDetailsPageInit (ctx) {
343 /* Disable the change button when we have no data in the input */ 354 /* Disable the change button when we have no data in the input */
344 $("dl input, dl textarea").on("input",function() { 355 $("dl input, dl textarea").on("input",function() {
345 if ($(this).val().length === 0) 356 if ($(this).val().length === 0)
346 $(this).parent().children(".change-btn").attr("disabled", "disabled"); 357 $(this).parent().next(".change-btn").attr("disabled", "disabled");
347 else 358 else
348 $(this).parent().children(".change-btn").removeAttr("disabled"); 359 $(this).parent().next(".change-btn").removeAttr("disabled");
349 }); 360 });
350 361
351 /* This checks to see if the dt's dd has data in it or if the change data 362 /* This checks to see if the dt's dd has data in it or if the change data
@@ -359,7 +370,7 @@ function layerDetailsPageInit (ctx) {
359 /* There's no current value and the layer is editable 370 /* There's no current value and the layer is editable
360 * so show the "Not set" and hide the delete icon 371 * so show the "Not set" and hide the delete icon
361 */ 372 */
362 dd.find(".muted").show(); 373 dd.find(".text-muted").show();
363 dd.find(".delete-current-value").hide(); 374 dd.find(".delete-current-value").hide();
364 } else { 375 } else {
365 /* We're not viewing an editable layer so hide the empty dd/dl pair */ 376 /* We're not viewing an editable layer so hide the empty dd/dl pair */
@@ -387,9 +398,9 @@ function layerDetailsPageInit (ctx) {
387 }); 398 });
388 399
389 400
390 layerDepsList.find(".icon-trash").click(layerDepRemoveClick); 401 layerDepsList.find(".glyphicon-trash").click(layerDepRemoveClick);
391 layerDepsList.find("a").tooltip(); 402 layerDepsList.find("a").tooltip();
392 $(".icon-trash").tooltip(); 403 $(".glyphicon-trash").tooltip();
393 $(".commit").tooltip(); 404 $(".commit").tooltip();
394 405
395} 406}
diff --git a/bitbake/lib/toaster/toastergui/static/js/libtoaster.js b/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
index d48c7f787a..e4e4f6cf56 100644
--- a/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
+++ b/bitbake/lib/toaster/toastergui/static/js/libtoaster.js
@@ -300,11 +300,11 @@ var libtoaster = (function () {
300 var alertMsg; 300 var alertMsg;
301 301
302 if (layerDepsList.length > 0 && add === true) { 302 if (layerDepsList.length > 0 && add === true) {
303 alertMsg = $("<span>You have added <strong>"+(layerDepsList.length+1)+"</strong> layers to your project: <a id=\"layer-affected-name\"></a> and its dependencies </span>"); 303 alertMsg = $("<span>You have added <strong>"+(layerDepsList.length+1)+"</strong> layers to your project: <a class=\"alert-link\" id=\"layer-affected-name\"></a> and its dependencies </span>");
304 304
305 /* Build the layer deps list */ 305 /* Build the layer deps list */
306 layerDepsList.map(function(layer, i){ 306 layerDepsList.map(function(layer, i){
307 var link = $("<a></a>"); 307 var link = $("<a class=\"alert-link\"></a>");
308 308
309 link.attr("href", layer.layerdetailurl); 309 link.attr("href", layer.layerdetailurl);
310 link.text(layer.name); 310 link.text(layer.name);
@@ -316,9 +316,9 @@ var libtoaster = (function () {
316 alertMsg.append(link); 316 alertMsg.append(link);
317 }); 317 });
318 } else if (layerDepsList.length === 0 && add === true) { 318 } else if (layerDepsList.length === 0 && add === true) {
319 alertMsg = $("<span>You have added <strong>1</strong> layer to your project: <a id=\"layer-affected-name\"></a></span></span>"); 319 alertMsg = $("<span>You have added <strong>1</strong> layer to your project: <a class=\"alert-link\" id=\"layer-affected-name\"></a></span></span>");
320 } else if (add === false) { 320 } else if (add === false) {
321 alertMsg = $("<span>You have removed <strong>1</strong> layer from your project: <a id=\"layer-affected-name\"></a></span>"); 321 alertMsg = $("<span>You have removed <strong>1</strong> layer from your project: <a class=\"alert-link\" id=\"layer-affected-name\"></a></span>");
322 } 322 }
323 323
324 alertMsg.children("#layer-affected-name").text(layer.name); 324 alertMsg.children("#layer-affected-name").text(layer.name);
@@ -393,11 +393,11 @@ var libtoaster = (function () {
393 data.results[0].name === projectName) { 393 data.results[0].name === projectName) {
394 // This project name exists hence show the error and disable 394 // This project name exists hence show the error and disable
395 // the save button 395 // the save button
396 ctrlGrpValidateProjectName.addClass('control-group error'); 396 ctrlGrpValidateProjectName.addClass('has-error');
397 hintError.show(); 397 hintError.show();
398 enableOrDisableBtn.attr('disabled', 'disabled'); 398 enableOrDisableBtn.attr('disabled', 'disabled');
399 } else { 399 } else {
400 ctrlGrpValidateProjectName.removeClass('control-group error'); 400 ctrlGrpValidateProjectName.removeClass('has-error');
401 hintError.hide(); 401 hintError.hide();
402 enableOrDisableBtn.removeAttr('disabled'); 402 enableOrDisableBtn.removeAttr('disabled');
403 } 403 }
@@ -557,14 +557,14 @@ $(document).ready(function() {
557 // show task type and outcome in task details pages 557 // show task type and outcome in task details pages
558 $(".task-info").tooltip({ container: 'body', html: true, delay: {show: 200}, placement: 'right' }); 558 $(".task-info").tooltip({ container: 'body', html: true, delay: {show: 200}, placement: 'right' });
559 559
560 // initialise the tooltips for the icon-pencil icons 560 // initialise the tooltips for the edit icons
561 $(".icon-pencil").tooltip({ container: 'body', html: true, delay: {show: 400}, title: "Change" }); 561 $(".glyphicon-edit").tooltip({ container: 'body', html: true, delay: {show: 400}, title: "Change" });
562 562
563 // initialise the tooltips for the download icons 563 // initialise the tooltips for the download icons
564 $(".icon-download-alt").tooltip({ container: 'body', html: true, delay: { show: 200 } }); 564 $(".icon-download-alt").tooltip({ container: 'body', html: true, delay: { show: 200 } });
565 565
566 // initialise popover for debug information 566 // initialise popover for debug information
567 $(".icon-info-sign").popover( { placement: 'bottom', html: true, container: 'body' }); 567 $(".glyphicon-info-sign").popover( { placement: 'bottom', html: true, container: 'body' });
568 568
569 // linking directly to tabs 569 // linking directly to tabs
570 $(function(){ 570 $(function(){
diff --git a/bitbake/lib/toaster/toastergui/static/js/newcustomimage_modal.js b/bitbake/lib/toaster/toastergui/static/js/newcustomimage_modal.js
index cb9ed4da05..8356c02b5a 100644
--- a/bitbake/lib/toaster/toastergui/static/js/newcustomimage_modal.js
+++ b/bitbake/lib/toaster/toastergui/static/js/newcustomimage_modal.js
@@ -22,14 +22,18 @@ function newCustomImageModalInit(){
22 var nameInput = imgCustomModal.find('input'); 22 var nameInput = imgCustomModal.find('input');
23 23
24 var invalidNameMsg = "Image names cannot contain spaces or capital letters. The only allowed special character is dash (-)."; 24 var invalidNameMsg = "Image names cannot contain spaces or capital letters. The only allowed special character is dash (-).";
25 var duplicateNameMsg = "A recipe with this name already exists. Image names must be unique."; 25 var duplicateNameMsg = "An image with this name already exists. Image names must be unique.";
26 var duplicateImageInProjectMsg = "An image with this name already exists in this project." 26 var duplicateImageInProjectMsg = "An image with this name already exists in this project."
27 var invalidBaseRecipeIdMsg = "Please select an image to customise."; 27 var invalidBaseRecipeIdMsg = "Please select an image to customise.";
28 28
29 // capture clicks on radio buttons inside the modal; when one is selected, 29 /* capture clicks on radio buttons inside the modal; when one is selected,
30 // set the recipe on the modal 30 * set the recipe on the modal
31 imgCustomModal.on("click", "[name='select-image']", function (e) { 31 */
32 imgCustomModal.on("click", "[name='select-image']", function(e) {
32 clearRecipeError(); 33 clearRecipeError();
34 $(".radio").each(function(){
35 $(this).removeClass("has-error");
36 });
33 37
34 var recipeId = $(e.target).attr('data-recipe'); 38 var recipeId = $(e.target).attr('data-recipe');
35 imgCustomModal.data('recipe', recipeId); 39 imgCustomModal.data('recipe', recipeId);
@@ -42,6 +46,9 @@ function newCustomImageModalInit(){
42 46
43 if (!baseRecipeId) { 47 if (!baseRecipeId) {
44 showRecipeError(invalidBaseRecipeIdMsg); 48 showRecipeError(invalidBaseRecipeIdMsg);
49 $(".radio").each(function(){
50 $(this).addClass("has-error");
51 });
45 return; 52 return;
46 } 53 }
47 54
@@ -71,7 +78,7 @@ function newCustomImageModalInit(){
71 function showNameError(text){ 78 function showNameError(text){
72 invalidNameHelp.text(text); 79 invalidNameHelp.text(text);
73 invalidNameHelp.show(); 80 invalidNameHelp.show();
74 nameInput.parent().addClass('error'); 81 nameInput.parent().addClass('has-error');
75 } 82 }
76 83
77 function showRecipeError(text){ 84 function showRecipeError(text){
@@ -92,26 +99,26 @@ function newCustomImageModalInit(){
92 if (nameInput.val().search(/[^a-z|0-9|-]/) != -1){ 99 if (nameInput.val().search(/[^a-z|0-9|-]/) != -1){
93 showNameError(invalidNameMsg); 100 showNameError(invalidNameMsg);
94 newCustomImgBtn.prop("disabled", true); 101 newCustomImgBtn.prop("disabled", true);
95 nameInput.parent().addClass('error'); 102 nameInput.parent().addClass('has-error');
96 } else { 103 } else {
97 invalidNameHelp.hide(); 104 invalidNameHelp.hide();
98 newCustomImgBtn.prop("disabled", false); 105 newCustomImgBtn.prop("disabled", false);
99 nameInput.parent().removeClass('error'); 106 nameInput.parent().removeClass('has-error');
100 } 107 }
101 }); 108 });
102} 109}
103 110
104// Set the image recipes which can used as the basis for the custom 111/* Set the image recipes which can used as the basis for the custom
105// image recipe the user is creating 112 * image recipe the user is creating
106// 113 * baseRecipes: a list of one or more recipes which can be
107// baseRecipes: a list of one or more recipes which can be 114 * used as the base for the new custom image recipe in the format:
108// used as the base for the new custom image recipe in the format: 115 * [{'id': <recipe ID>, 'name': <recipe name>'}, ...]
109// [{'id': <recipe ID>, 'name': <recipe name>'}, ...] 116 *
110// 117 * if recipes is a single recipe, just show the text box to set the
111// if recipes is a single recipe, just show the text box to set the 118 * name for the new custom image; if recipes contains multiple recipe objects,
112// name for the new custom image; if recipes contains multiple recipe objects, 119 * show a set of radio buttons so the user can decide which to use as the
113// show a set of radio buttons so the user can decide which to use as the 120 * basis for the new custom image
114// basis for the new custom image 121 */
115function newCustomImageModalSetRecipes(baseRecipes) { 122function newCustomImageModalSetRecipes(baseRecipes) {
116 var imgCustomModal = $("#new-custom-image-modal"); 123 var imgCustomModal = $("#new-custom-image-modal");
117 var imageSelector = $('#new-custom-image-modal [data-role="image-selector"]'); 124 var imageSelector = $('#new-custom-image-modal [data-role="image-selector"]');
@@ -124,8 +131,9 @@ function newCustomImageModalSetRecipes(baseRecipes) {
124 // hide the radio button container 131 // hide the radio button container
125 imageSelector.hide(); 132 imageSelector.hide();
126 133
127 // set the single recipe ID on the modal as it's the only one 134 /* set the single recipe ID on the modal as it's the only one
128 // we can build from 135 * we can build from.
136 */
129 imgCustomModal.data('recipe', baseRecipes[0].id); 137 imgCustomModal.data('recipe', baseRecipes[0].id);
130 } 138 }
131 else { 139 else {
@@ -134,15 +142,31 @@ function newCustomImageModalSetRecipes(baseRecipes) {
134 for (var i = 0; i < baseRecipes.length; i++) { 142 for (var i = 0; i < baseRecipes.length; i++) {
135 var recipe = baseRecipes[i]; 143 var recipe = baseRecipes[i];
136 imageSelectRadiosContainer.append( 144 imageSelectRadiosContainer.append(
137 '<label class="radio" data-role="image-radio">' + 145 '<div class="radio"><label data-role="image-radio">' +
138 recipe.name + 146 '<input type="radio" name="select-image" ' +
139 '<input type="radio" class="form-control" name="select-image" ' +
140 'data-recipe="' + recipe.id + '">' + 147 'data-recipe="' + recipe.id + '">' +
141 '</label>' 148 recipe.name +
149 '</label></div>'
142 ); 150 );
143 } 151 }
144 152
153 /* select the first radio button as default selection. Radio button
154 * groups should always display with an option checked
155 */
156 imageSelectRadiosContainer.find("input:radio:first").attr("checked", "checked");
157
158 /* check which radio button is selected by default inside the modal,
159 * and set the recipe on the modal accordingly
160 */
161 imageSelectRadiosContainer.find("input:radio").each(function(){
162 if ( $(this).is(":checked") ) {
163 var recipeId = $(this).attr("data-recipe");
164 imgCustomModal.data("recipe", recipeId);
165 }
166 });
167
145 // show the radio button container 168 // show the radio button container
146 imageSelector.show(); 169 imageSelector.show();
147 } 170
171 }
148} 172}
diff --git a/bitbake/lib/toaster/toastergui/static/js/projectpage.js b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
index 3013416dd1..6d92490ba2 100644
--- a/bitbake/lib/toaster/toastergui/static/js/projectpage.js
+++ b/bitbake/lib/toaster/toastergui/static/js/projectpage.js
@@ -75,7 +75,7 @@ function projectPageInit(ctx) {
75 imported = JSON.parse(imported); 75 imported = JSON.parse(imported);
76 76
77 if (imported.deps_added.length === 0) { 77 if (imported.deps_added.length === 0) {
78 message = "You have imported <strong><a href=\""+imported.imported_layer.layerdetailurl+"\">"+imported.imported_layer.name+"</a></strong> and added it to your project."; 78 message = "You have imported <strong><a class=\"alert-link\" href=\""+imported.imported_layer.layerdetailurl+"\">"+imported.imported_layer.name+"</a></strong> and added it to your project.";
79 } else { 79 } else {
80 80
81 var links = "<a href=\""+imported.imported_layer.layerdetailurl+"\">"+imported.imported_layer.name+"</a>, "; 81 var links = "<a href=\""+imported.imported_layer.layerdetailurl+"\">"+imported.imported_layer.name+"</a>, ";
@@ -145,7 +145,7 @@ function projectPageInit(ctx) {
145 for (var i in layers){ 145 for (var i in layers){
146 var layerObj = layers[i]; 146 var layerObj = layers[i];
147 147
148 var projectLayer = $("<li><a></a><span class=\"icon-trash\" data-toggle=\"tooltip\" title=\"Remove\"></span></li>"); 148 var projectLayer = $("<li><a></a><span class=\"glyphicon glyphicon-trash\" data-toggle=\"tooltip\" title=\"Remove\"></span></li>");
149 149
150 projectLayer.data('layer', layerObj); 150 projectLayer.data('layer', layerObj);
151 projectLayer.children("span").tooltip(); 151 projectLayer.children("span").tooltip();
@@ -208,7 +208,7 @@ function projectPageInit(ctx) {
208 } 208 }
209 209
210 for (var i in recipes){ 210 for (var i in recipes){
211 var freqTargetCheck = $('<li><label class="checkbox"><input type="checkbox" /><span class="freq-target-name"></span></label></li>'); 211 var freqTargetCheck = $('<li><div class="checkbox"><label><input type="checkbox" /><span class="freq-target-name"></span></label></li>');
212 freqTargetCheck.find(".freq-target-name").text(recipes[i]); 212 freqTargetCheck.find(".freq-target-name").text(recipes[i]);
213 freqTargetCheck.find("input").val(recipes[i]); 213 freqTargetCheck.find("input").val(recipes[i]);
214 freqTargetCheck.click(function(){ 214 freqTargetCheck.click(function(){
@@ -285,7 +285,7 @@ function projectPageInit(ctx) {
285 machineChangeCancel.click(); 285 machineChangeCancel.click();
286 286
287 /* Show the alert message */ 287 /* Show the alert message */
288 var message = $('<span class="lead">You have changed the machine to: <strong><span id="notify-machine-name"></span></strong></span>'); 288 var message = $('<span>You have changed the machine to: <strong><span id="notify-machine-name"></span></strong></span>');
289 message.find("#notify-machine-name").text(currentMachineAddSelection); 289 message.find("#notify-machine-name").text(currentMachineAddSelection);
290 libtoaster.showChangeNotification(message); 290 libtoaster.showChangeNotification(message);
291 }, 291 },
diff --git a/bitbake/lib/toaster/toastergui/static/js/table.js b/bitbake/lib/toaster/toastergui/static/js/table.js
index 7f76f555fc..749eb8e75c 100644
--- a/bitbake/lib/toaster/toastergui/static/js/table.js
+++ b/bitbake/lib/toaster/toastergui/static/js/table.js
@@ -75,14 +75,21 @@ function tableInit(ctx){
75 75
76 if (tableData.total === 0){ 76 if (tableData.total === 0){
77 tableContainer.hide(); 77 tableContainer.hide();
78 if ($("#no-results-special-"+ctx.tableName).length > 0) { 78 /* No results caused by a search returning nothing */
79 /* use this page's special no-results form instead of the default */ 79 if (tableParams.search) {
80 $("#no-results-search-input-"+ctx.tableName).val(tableParams.search); 80 if ($("#no-results-special-"+ctx.tableName).length > 0) {
81 $("#no-results-special-"+ctx.tableName).show(); 81 /* use this page's special no-results form instead of the default */
82 $("#results-found-"+ctx.tableName).hide(); 82 $("#no-results-search-input-"+ctx.tableName).val(tableParams.search);
83 } else { 83 $("#no-results-special-"+ctx.tableName).show();
84 $("#new-search-input-"+ctx.tableName).val(tableParams.search); 84 $("#results-found-"+ctx.tableName).hide();
85 $("#no-results-"+ctx.tableName).show(); 85 } else {
86 $("#new-search-input-"+ctx.tableName).val(tableParams.search);
87 $("#no-results-"+ctx.tableName).show();
88 }
89 }
90 else {
91 /* No results caused by there being no data */
92 $("#empty-state-"+ctx.tableName).show();
86 } 93 }
87 table.trigger("table-done", [tableData.total, tableParams]); 94 table.trigger("table-done", [tableData.total, tableParams]);
88 95
@@ -90,6 +97,7 @@ function tableInit(ctx){
90 } else { 97 } else {
91 tableContainer.show(); 98 tableContainer.show();
92 $("#no-results-"+ctx.tableName).hide(); 99 $("#no-results-"+ctx.tableName).hide();
100 $("#empty-state-"+ctx.tableName).hide();
93 } 101 }
94 102
95 setupTableChrome(tableData); 103 setupTableChrome(tableData);
@@ -169,7 +177,7 @@ function tableInit(ctx){
169 if (tableChromeDone === true) 177 if (tableChromeDone === true)
170 return; 178 return;
171 179
172 var tableHeadRow = table.find("thead"); 180 var tableHeadRow = table.find("thead > tr");
173 var editColMenu = $("#table-chrome-"+ctx.tableName).find(".editcol"); 181 var editColMenu = $("#table-chrome-"+ctx.tableName).find(".editcol");
174 182
175 tableHeadRow.html(""); 183 tableHeadRow.html("");
@@ -190,7 +198,7 @@ function tableInit(ctx){
190 198
191 /* Setup the help text */ 199 /* Setup the help text */
192 if (col.help_text.length > 0) { 200 if (col.help_text.length > 0) {
193 var help_text = $('<i class="icon-question-sign get-help"> </i>'); 201 var help_text = $('<span class="glyphicon glyphicon-question-sign get-help"> </span>');
194 help_text.tooltip({title: col.help_text}); 202 help_text.tooltip({title: col.help_text});
195 header.append(help_text); 203 header.append(help_text);
196 } 204 }
@@ -227,12 +235,12 @@ function tableInit(ctx){
227 } else { 235 } else {
228 /* Not orderable */ 236 /* Not orderable */
229 header.css("font-weight", "normal"); 237 header.css("font-weight", "normal");
230 header.append('<span class="muted">' + col.title + '</span> '); 238 header.append('<span class="text-muted">' + col.title + '</span> ');
231 } 239 }
232 240
233 /* Setup the filter button */ 241 /* Setup the filter button */
234 if (col.filter_name){ 242 if (col.filter_name){
235 var filterBtn = $('<a href="#" role="button" data-filter-on="' + col.filter_name + '" class="pull-right btn btn-mini" data-toggle="modal"><i class="icon-filter filtered"></i></a>'); 243 var filterBtn = $('<a href="#" role="button" data-filter-on="' + col.filter_name + '" class="pull-right btn btn-link btn-xs" data-toggle="modal"><i class="glyphicon glyphicon-filter filtered"></i></a>');
236 244
237 filterBtn.data('filter-name', col.filter_name); 245 filterBtn.data('filter-name', col.filter_name);
238 filterBtn.prop('id', col.filter_name); 246 filterBtn.prop('id', col.filter_name);
@@ -251,7 +259,7 @@ function tableInit(ctx){
251 tableHeadRow.append(header); 259 tableHeadRow.append(header);
252 260
253 /* Now setup the checkbox state and click handler */ 261 /* Now setup the checkbox state and click handler */
254 var toggler = $('<li><label class="checkbox">'+col.title+'<input type="checkbox" id="checkbox-'+ col.field_name +'" class="col-toggle" value="'+col.field_name+'" /></label></li>'); 262 var toggler = $('<li><div class="checkbox"><label><input type="checkbox" id="checkbox-'+ col.field_name +'" class="col-toggle" value="'+col.field_name+'" />'+col.title+'</label></div></li>');
255 263
256 var togglerInput = toggler.find("input"); 264 var togglerInput = toggler.find("input");
257 265
@@ -261,7 +269,8 @@ function tableInit(ctx){
261 if (col.hideable){ 269 if (col.hideable){
262 togglerInput.click(colToggleClicked); 270 togglerInput.click(colToggleClicked);
263 } else { 271 } else {
264 toggler.find("label").addClass("muted"); 272 toggler.find("label").addClass("text-muted");
273 toggler.find("label").parent().addClass("disabled");
265 togglerInput.attr("disabled", "disabled"); 274 togglerInput.attr("disabled", "disabled");
266 } 275 }
267 276
@@ -278,11 +287,12 @@ function tableInit(ctx){
278 /* Toggles the active state of the filter button */ 287 /* Toggles the active state of the filter button */
279 function filterBtnActive(filterBtn, active){ 288 function filterBtnActive(filterBtn, active){
280 if (active) { 289 if (active) {
290 filterBtn.removeClass("btn-link");
281 filterBtn.addClass("btn-primary"); 291 filterBtn.addClass("btn-primary");
282 292
283 filterBtn.tooltip({ 293 filterBtn.tooltip({
284 html: true, 294 html: true,
285 title: '<button class="btn btn-small btn-primary" onClick=\'$("#clear-filter-btn-'+ ctx.tableName +'").click();\'>Clear filter</button>', 295 title: '<button class="btn btn-sm btn-primary" onClick=\'$("#clear-filter-btn-'+ ctx.tableName +'").click();\'>Clear filter</button>',
286 placement: 'bottom', 296 placement: 'bottom',
287 delay: { 297 delay: {
288 hide: 1500, 298 hide: 1500,
@@ -291,6 +301,7 @@ function tableInit(ctx){
291 }); 301 });
292 } else { 302 } else {
293 filterBtn.removeClass("btn-primary"); 303 filterBtn.removeClass("btn-primary");
304 filterBtn.addClass("btn-link");
294 filterBtn.tooltip('destroy'); 305 filterBtn.tooltip('destroy');
295 } 306 }
296 } 307 }
@@ -396,23 +407,23 @@ function tableInit(ctx){
396 var hasNoRecords = (Number(filterActionData.count) == 0); 407 var hasNoRecords = (Number(filterActionData.count) == 0);
397 408
398 var actionStr = '<div class="radio">' + 409 var actionStr = '<div class="radio">' +
399 '<input type="radio" name="filter"' + 410 '<label class="filter-title' +
400 ' value="' + filterName + '"'; 411 (hasNoRecords ? ' text-muted' : '') + '"' +
412 ' for="' + filterName + '">' +
413 '<input type="radio" name="filter"' +
414 ' value="' + filterName + '"';
401 415
402 if (hasNoRecords) { 416 if (hasNoRecords) {
403 actionStr += ' disabled="disabled"'; 417 actionStr += ' disabled="disabled"';
404 } 418 }
405 419
406 actionStr += ' id="' + filterName + '">' + 420 actionStr += ' id="' + filterName + '">' +
407 '<input type="hidden" name="filter_value" value="on"' + 421 '<input type="hidden" name="filter_value" value="on"' +
408 ' data-value-for="' + filterName + '">' + 422 ' data-value-for="' + filterName + '">' +
409 '<label class="filter-title' + 423 filterActionData.title +
410 (hasNoRecords ? ' muted' : '') + '"' + 424 ' (' + filterActionData.count + ')' +
411 ' for="' + filterName + '">' + 425 '</label>' +
412 filterActionData.title + 426 '</div>';
413 ' (' + filterActionData.count + ')' +
414 '</label>' +
415 '</div>';
416 427
417 var action = $(actionStr); 428 var action = $(actionStr);
418 429
@@ -446,22 +457,23 @@ function tableInit(ctx){
446 */ 457 */
447 function createActionDateRange(filterName, filterValue, filterActionData) { 458 function createActionDateRange(filterName, filterValue, filterActionData) {
448 var action = $('<div class="radio">' + 459 var action = $('<div class="radio">' +
460 '<label class="filter-title"' +
461 ' for="' + filterName + '">' +
449 '<input type="radio" name="filter"' + 462 '<input type="radio" name="filter"' +
450 ' value="' + filterName + '" ' + 463 ' value="' + filterName + '" ' +
451 ' id="' + filterName + '">' + 464 ' id="' + filterName + '">' +
452 '<input type="hidden" name="filter_value" value=""' + 465 '<input type="hidden" name="filter_value" value=""' +
453 ' data-value-for="' + filterName + '">' + 466 ' data-value-for="' + filterName + '">' +
454 '<label class="filter-title"' +
455 ' for="' + filterName + '">' +
456 filterActionData.title + 467 filterActionData.title +
457 '</label>' + 468 '</label>' +
458 '<input type="text" maxlength="10" class="input-small"' + 469 '<div class="form-inline form-group date-filter-controls">' +
470 '<input type="text" maxlength="10" class="form-control"' +
459 ' data-date-from-for="' + filterName + '">' + 471 ' data-date-from-for="' + filterName + '">' +
460 '<span class="help-inline">to</span>' + 472 '<span>to</span>' +
461 '<input type="text" maxlength="10" class="input-small"' + 473 '<input type="text" maxlength="10" class="form-control"' +
462 ' data-date-to-for="' + filterName + '">' + 474 ' data-date-to-for="' + filterName + '">' +
463 '<span class="help-inline get-help">(yyyy-mm-dd)</span>' + 475 '<span class="help-inline get-help">(yyyy-mm-dd)</span>' +
464 '</div>'); 476 '</div></div>');
465 477
466 var radio = action.find('[type="radio"]'); 478 var radio = action.find('[type="radio"]');
467 var value = action.find('[data-value-for]'); 479 var value = action.find('[data-value-for]');
@@ -602,7 +614,7 @@ function tableInit(ctx){
602 queryset on the table 614 queryset on the table
603 */ 615 */
604 var filterActionRadios = $('#filter-actions-' + ctx.tableName); 616 var filterActionRadios = $('#filter-actions-' + ctx.tableName);
605 var filterApplyBtn = $('[data-role="filter-apply"]'); 617 var filterApplyBtn = $('[data-cat="filter-apply"]');
606 618
607 var setApplyButtonState = function (e, filterActionValue) { 619 var setApplyButtonState = function (e, filterActionValue) {
608 if (filterActionValue !== undefined) { 620 if (filterActionValue !== undefined) {
@@ -643,7 +655,7 @@ function tableInit(ctx){
643 if (action) { 655 if (action) {
644 // Setup the current selected filter; default to 'all' if 656 // Setup the current selected filter; default to 'all' if
645 // no current filter selected 657 // no current filter selected
646 var radioInput = action.children('input[name="filter"]'); 658 var radioInput = action.find('input[name="filter"]');
647 if ((tableParams.filter && 659 if ((tableParams.filter &&
648 tableParams.filter === radioInput.val()) || 660 tableParams.filter === radioInput.val()) ||
649 filterActionData.action_name == 'all') { 661 filterActionData.action_name == 'all') {
@@ -769,6 +781,7 @@ function tableInit(ctx){
769 781
770 loadData(tableParams); 782 loadData(tableParams);
771 783
772 $(this).parent().modal('hide'); 784
785 $('#filter-modal-'+ctx.tableName).modal('hide');
773 }); 786 });
774} 787}