bootstrap.js 54 KB
Newer Older
1
/*!
Mark Otto's avatar
Mark Otto committed
2
 * Bootstrap v3.1.1 (http://getbootstrap.com)
3
 * Copyright 2011-2014 Twitter, Inc.
Mark Otto's avatar
Mark Otto committed
4
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
Chris Rebert's avatar
Chris Rebert committed
5
 */
6

7
if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript requires jQuery') }
8

9
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
10
 * Bootstrap: transition.js v3.1.1
Mark Otto's avatar
Mark Otto committed
11
 * http://getbootstrap.com/javascript/#transitions
12
 * ========================================================================
13
 * Copyright 2011-2014 Twitter, Inc.
14
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
15
 * ======================================================================== */
16
17


18
19
+function ($) {
  'use strict';
20

21
22
  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
  // ============================================================
23

24
25
  function transitionEnd() {
    var el = document.createElement('bootstrap')
26

27
    var transEndEventNames = {
Mark Otto's avatar
Mark Otto committed
28
29
30
31
      'WebkitTransition' : 'webkitTransitionEnd',
      'MozTransition'    : 'transitionend',
      'OTransition'      : 'oTransitionEnd otransitionend',
      'transition'       : 'transitionend'
fat's avatar
fat committed
32
    }
33

34
35
36
37
38
    for (var name in transEndEventNames) {
      if (el.style[name] !== undefined) {
        return { end: transEndEventNames[name] }
      }
    }
39
40

    return false // explicit for ie8 (  ._.)
41
42
  }

43
44
  // http://blog.alexmaccaw.com/css-transitions
  $.fn.emulateTransitionEnd = function (duration) {
45
    var called = false, $el = this
liuyl's avatar
liuyl committed
46
47
    $(this).one($.support.transition.end, function () { called = true })
    var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
48
    setTimeout(callback, duration)
49
    return this
50
51
  }

52
53
  $(function () {
    $.support.transition = transitionEnd()
fat's avatar
fat committed
54
  })
55

Chris Rebert's avatar
Chris Rebert committed
56
}(jQuery);
57

58
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
59
 * Bootstrap: alert.js v3.1.1
Mark Otto's avatar
Mark Otto committed
60
 * http://getbootstrap.com/javascript/#alerts
61
 * ========================================================================
62
 * Copyright 2011-2014 Twitter, Inc.
63
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
64
 * ======================================================================== */
65
66


67
68
+function ($) {
  'use strict';
69

fat's avatar
fat committed
70
71
  // ALERT CLASS DEFINITION
  // ======================
72
73

  var dismiss = '[data-dismiss="alert"]'
fat's avatar
fat committed
74
75
76
  var Alert   = function (el) {
    $(el).on('click', dismiss, this.close)
  }
77
78

  Alert.prototype.close = function (e) {
fat's avatar
fat committed
79
80
    var $this    = $(this)
    var selector = $this.attr('data-target')
81
82
83

    if (!selector) {
      selector = $this.attr('href')
fat's avatar
fat committed
84
      selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
85
86
    }

fat's avatar
fat committed
87
    var $parent = $(selector)
88

fat's avatar
fat committed
89
    if (e) e.preventDefault()
90

fat's avatar
fat committed
91
92
93
    if (!$parent.length) {
      $parent = $this.hasClass('alert') ? $this : $this.parent()
    }
94

Mark Otto's avatar
Mark Otto committed
95
    $parent.trigger(e = $.Event('close.bs.alert'))
96
97
98
99
100
101

    if (e.isDefaultPrevented()) return

    $parent.removeClass('in')

    function removeElement() {
Mark Otto's avatar
Mark Otto committed
102
      $parent.trigger('closed.bs.alert').remove()
103
104
105
    }

    $.support.transition && $parent.hasClass('fade') ?
106
107
108
      $parent
        .one($.support.transition.end, removeElement)
        .emulateTransitionEnd(150) :
109
110
111
112
      removeElement()
  }


fat's avatar
fat committed
113
114
  // ALERT PLUGIN DEFINITION
  // =======================
115

116
117
  var old = $.fn.alert

118
119
120
  $.fn.alert = function (option) {
    return this.each(function () {
      var $this = $(this)
Mark Otto's avatar
Mark Otto committed
121
      var data  = $this.data('bs.alert')
fat's avatar
fat committed
122

Mark Otto's avatar
Mark Otto committed
123
      if (!data) $this.data('bs.alert', (data = new Alert(this)))
124
125
126
127
128
129
130
      if (typeof option == 'string') data[option].call($this)
    })
  }

  $.fn.alert.Constructor = Alert


fat's avatar
fat committed
131
132
  // ALERT NO CONFLICT
  // =================
133
134
135
136
137
138
139

  $.fn.alert.noConflict = function () {
    $.fn.alert = old
    return this
  }


fat's avatar
fat committed
140
  // ALERT DATA-API
fat's avatar
fat committed
141
  // ==============
142

Mark Otto's avatar
Mark Otto committed
143
  $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
144

Chris Rebert's avatar
Chris Rebert committed
145
}(jQuery);
146

147
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
148
 * Bootstrap: button.js v3.1.1
Mark Otto's avatar
Mark Otto committed
149
 * http://getbootstrap.com/javascript/#buttons
150
 * ========================================================================
151
 * Copyright 2011-2014 Twitter, Inc.
152
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
153
 * ======================================================================== */
154
155


156
157
+function ($) {
  'use strict';
158

fat's avatar
fat committed
159
160
  // BUTTON PUBLIC CLASS DEFINITION
  // ==============================
161
162

  var Button = function (element, options) {
fat's avatar
fat committed
163
164
165
    this.$element  = $(element)
    this.options   = $.extend({}, Button.DEFAULTS, options)
    this.isLoading = false
fat's avatar
fat committed
166
167
168
169
  }

  Button.DEFAULTS = {
    loadingText: 'loading...'
170
171
172
  }

  Button.prototype.setState = function (state) {
fat's avatar
fat committed
173
174
175
176
    var d    = 'disabled'
    var $el  = this.$element
    var val  = $el.is('input') ? 'val' : 'html'
    var data = $el.data()
177
178

    state = state + 'Text'
fat's avatar
fat committed
179
180

    if (!data.resetText) $el.data('resetText', $el[val]())
181
182
183
184

    $el[val](data[state] || this.options[state])

    // push to event loop to allow forms to submit
fat's avatar
fat committed
185
186
187
188
189
190
191
192
193
    setTimeout($.proxy(function () {
      if (state == 'loadingText') {
        this.isLoading = true
        $el.addClass(d).attr(d, d)
      } else if (this.isLoading) {
        this.isLoading = false
        $el.removeClass(d).removeAttr(d)
      }
    }, this), 0)
194
195
196
  }

  Button.prototype.toggle = function () {
197
    var changed = true
fat's avatar
fat committed
198
    var $parent = this.$element.closest('[data-toggle="buttons"]')
199

200
    if ($parent.length) {
fat's avatar
fat committed
201
      var $input = this.$element.find('input')
fat's avatar
fat committed
202
203
204
      if ($input.prop('type') == 'radio') {
        if ($input.prop('checked') && this.$element.hasClass('active')) changed = false
        else $parent.find('.active').removeClass('active')
205
206
      }
      if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
fat's avatar
fat committed
207
    }
208

209
    if (changed) this.$element.toggleClass('active')
210
211
212
  }


fat's avatar
fat committed
213
214
  // BUTTON PLUGIN DEFINITION
  // ========================
215

216
217
  var old = $.fn.button

218
219
  $.fn.button = function (option) {
    return this.each(function () {
fat's avatar
fat committed
220
      var $this   = $(this)
fat's avatar
fat committed
221
      var data    = $this.data('bs.button')
fat's avatar
fat committed
222
223
      var options = typeof option == 'object' && option

Mark Otto's avatar
Mark Otto committed
224
      if (!data) $this.data('bs.button', (data = new Button(this, options)))
fat's avatar
fat committed
225

226
227
228
229
230
231
232
233
      if (option == 'toggle') data.toggle()
      else if (option) data.setState(option)
    })
  }

  $.fn.button.Constructor = Button


fat's avatar
fat committed
234
235
  // BUTTON NO CONFLICT
  // ==================
236
237
238
239
240
241
242

  $.fn.button.noConflict = function () {
    $.fn.button = old
    return this
  }


fat's avatar
fat committed
243
244
  // BUTTON DATA-API
  // ===============
245

Mark Otto's avatar
Mark Otto committed
246
  $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) {
247
248
249
    var $btn = $(e.target)
    if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
    $btn.button('toggle')
250
    e.preventDefault()
251
252
  })

Chris Rebert's avatar
Chris Rebert committed
253
}(jQuery);
254

255
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
256
 * Bootstrap: carousel.js v3.1.1
Mark Otto's avatar
Mark Otto committed
257
 * http://getbootstrap.com/javascript/#carousel
258
 * ========================================================================
259
 * Copyright 2011-2014 Twitter, Inc.
260
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
261
 * ======================================================================== */
262
263


264
265
+function ($) {
  'use strict';
266

fat's avatar
fat committed
267
268
  // CAROUSEL CLASS DEFINITION
  // =========================
269
270

  var Carousel = function (element, options) {
fat's avatar
fat committed
271
    this.$element    = $(element)
fat's avatar
fat committed
272
    this.$indicators = this.$element.find('.carousel-indicators')
fat's avatar
fat committed
273
274
275
276
277
278
279
    this.options     = options
    this.paused      =
    this.sliding     =
    this.interval    =
    this.$active     =
    this.$items      = null

280
281
282
283
284
    this.options.pause == 'hover' && this.$element
      .on('mouseenter', $.proxy(this.pause, this))
      .on('mouseleave', $.proxy(this.cycle, this))
  }

fat's avatar
fat committed
285
  Carousel.DEFAULTS = {
Mark Otto's avatar
Mark Otto committed
286
287
288
    interval: 5000,
    pause: 'hover',
    wrap: true
fat's avatar
fat committed
289
  }
290

fat's avatar
fat committed
291
292
  Carousel.prototype.cycle =  function (e) {
    e || (this.paused = false)
293

fat's avatar
fat committed
294
    this.interval && clearInterval(this.interval)
fat's avatar
fat committed
295

fat's avatar
fat committed
296
297
298
    this.options.interval
      && !this.paused
      && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
299

fat's avatar
fat committed
300
301
    return this
  }
302

fat's avatar
fat committed
303
304
305
  Carousel.prototype.getActiveIndex = function () {
    this.$active = this.$element.find('.item.active')
    this.$items  = this.$active.parent().children()
306

fat's avatar
fat committed
307
308
    return this.$items.index(this.$active)
  }
309

fat's avatar
fat committed
310
311
312
  Carousel.prototype.to = function (pos) {
    var that        = this
    var activeIndex = this.getActiveIndex()
313

fat's avatar
fat committed
314
    if (pos > (this.$items.length - 1) || pos < 0) return
315

316
    if (this.sliding)       return this.$element.one('slid.bs.carousel', function () { that.to(pos) })
fat's avatar
fat committed
317
318
319
320
    if (activeIndex == pos) return this.pause().cycle()

    return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
  }
321

fat's avatar
fat committed
322
323
324
  Carousel.prototype.pause = function (e) {
    e || (this.paused = true)

325
    if (this.$element.find('.next, .prev').length && $.support.transition) {
fat's avatar
fat committed
326
327
      this.$element.trigger($.support.transition.end)
      this.cycle(true)
328
329
    }

fat's avatar
fat committed
330
    this.interval = clearInterval(this.interval)
331

fat's avatar
fat committed
332
333
    return this
  }
334

fat's avatar
fat committed
335
336
337
338
  Carousel.prototype.next = function () {
    if (this.sliding) return
    return this.slide('next')
  }
339

fat's avatar
fat committed
340
341
342
343
  Carousel.prototype.prev = function () {
    if (this.sliding) return
    return this.slide('prev')
  }
344

fat's avatar
fat committed
345
346
347
348
349
350
351
  Carousel.prototype.slide = function (type, next) {
    var $active   = this.$element.find('.item.active')
    var $next     = next || $active[type]()
    var isCycling = this.interval
    var direction = type == 'next' ? 'left' : 'right'
    var fallback  = type == 'next' ? 'first' : 'last'
    var that      = this
Jacob Thornton's avatar
Jacob Thornton committed
352

Jacob Thornton's avatar
Jacob Thornton committed
353
354
355
356
357
    if (!$next.length) {
      if (!this.options.wrap) return
      $next = this.$element.find('.item')[fallback]()
    }

358
    if ($next.hasClass('active')) return this.sliding = false
fat's avatar
fat committed
359

Mark Otto's avatar
Mark Otto committed
360
    var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction })
361
362
    this.$element.trigger(e)
    if (e.isDefaultPrevented()) return
363

364
365
366
    this.sliding = true

    isCycling && this.pause()
fat's avatar
fat committed
367
368
369

    if (this.$indicators.length) {
      this.$indicators.find('.active').removeClass('active')
370
      this.$element.one('slid.bs.carousel', function () {
fat's avatar
fat committed
371
372
373
374
375
376
377
378
379
380
        var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
        $nextIndicator && $nextIndicator.addClass('active')
      })
    }

    if ($.support.transition && this.$element.hasClass('slide')) {
      $next.addClass(type)
      $next[0].offsetWidth // force reflow
      $active.addClass(direction)
      $next.addClass(direction)
Jacob Thornton's avatar
Jacob Thornton committed
381
      $active
382
383
384
385
        .one($.support.transition.end, function () {
          $next.removeClass([type, direction].join(' ')).addClass('active')
          $active.removeClass(['active', direction].join(' '))
          that.sliding = false
386
          setTimeout(function () { that.$element.trigger('slid.bs.carousel') }, 0)
387
        })
Mark Otto's avatar
Mark Otto committed
388
        .emulateTransitionEnd($active.css('transition-duration').slice(0, -1) * 1000)
fat's avatar
fat committed
389
390
391
392
    } else {
      $active.removeClass('active')
      $next.addClass('active')
      this.sliding = false
393
      this.$element.trigger('slid.bs.carousel')
394
395
    }

fat's avatar
fat committed
396
397
398
    isCycling && this.cycle()

    return this
399
400
401
  }


fat's avatar
fat committed
402
403
  // CAROUSEL PLUGIN DEFINITION
  // ==========================
404

405
406
  var old = $.fn.carousel

407
408
  $.fn.carousel = function (option) {
    return this.each(function () {
fat's avatar
fat committed
409
      var $this   = $(this)
Mark Otto's avatar
Mark Otto committed
410
      var data    = $this.data('bs.carousel')
Jacob Thornton's avatar
Jacob Thornton committed
411
      var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
fat's avatar
fat committed
412
413
      var action  = typeof option == 'string' ? option : options.slide

Mark Otto's avatar
Mark Otto committed
414
      if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
415
      if (typeof option == 'number') data.to(option)
Jacob Thornton's avatar
Jacob Thornton committed
416
      else if (action) data[action]()
Mark Otto's avatar
Mark Otto committed
417
      else if (options.interval) data.pause().cycle()
418
419
420
421
422
423
    })
  }

  $.fn.carousel.Constructor = Carousel


fat's avatar
fat committed
424
425
  // CAROUSEL NO CONFLICT
  // ====================
426
427
428
429
430
431

  $.fn.carousel.noConflict = function () {
    $.fn.carousel = old
    return this
  }

fat's avatar
fat committed
432

fat's avatar
fat committed
433
434
  // CAROUSEL DATA-API
  // =================
435

436
  $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
fat's avatar
fat committed
437
    var $this   = $(this), href
fat's avatar
fat committed
438
439
    var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
    var options = $.extend({}, $target.data(), $this.data())
fat's avatar
fat committed
440
441
    var slideIndex = $this.attr('data-slide-to')
    if (slideIndex) options.interval = false
442

443
    $target.carousel(options)
444
445

    if (slideIndex = $this.attr('data-slide-to')) {
fat's avatar
fat committed
446
      $target.data('bs.carousel').to(slideIndex)
447
448
    }

449
    e.preventDefault()
450
451
  })

fat's avatar
fat committed
452
453
454
455
456
457
458
  $(window).on('load', function () {
    $('[data-ride="carousel"]').each(function () {
      var $carousel = $(this)
      $carousel.carousel($carousel.data())
    })
  })

Chris Rebert's avatar
Chris Rebert committed
459
}(jQuery);
460

461
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
462
 * Bootstrap: collapse.js v3.1.1
Mark Otto's avatar
Mark Otto committed
463
 * http://getbootstrap.com/javascript/#collapse
464
 * ========================================================================
465
 * Copyright 2011-2014 Twitter, Inc.
466
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
467
 * ======================================================================== */
468
469


470
471
+function ($) {
  'use strict';
472

473
474
  // COLLAPSE PUBLIC CLASS DEFINITION
  // ================================
475
476

  var Collapse = function (element, options) {
477
478
479
    this.$element      = $(element)
    this.options       = $.extend({}, Collapse.DEFAULTS, options)
    this.transitioning = null
480

481
482
483
484
485
486
487
    if (this.options.parent) this.$parent = $(this.options.parent)
    if (this.options.toggle) this.toggle()
  }

  Collapse.DEFAULTS = {
    toggle: true
  }
488

489
490
491
  Collapse.prototype.dimension = function () {
    var hasWidth = this.$element.hasClass('width')
    return hasWidth ? 'width' : 'height'
492
493
  }

494
495
  Collapse.prototype.show = function () {
    if (this.transitioning || this.$element.hasClass('in')) return
496

fat's avatar
fat committed
497
498
499
500
    var startEvent = $.Event('show.bs.collapse')
    this.$element.trigger(startEvent)
    if (startEvent.isDefaultPrevented()) return

Mark Otto's avatar
Mark Otto committed
501
    var actives = this.$parent && this.$parent.find('> .panel > .in')
502

503
    if (actives && actives.length) {
fat's avatar
fat committed
504
      var hasData = actives.data('bs.collapse')
505
506
      if (hasData && hasData.transitioning) return
      actives.collapse('hide')
fat's avatar
fat committed
507
      hasData || actives.data('bs.collapse', null)
508
509
    }

510
511
512
513
514
515
516
517
518
519
520
521
    var dimension = this.dimension()

    this.$element
      .removeClass('collapse')
      .addClass('collapsing')
      [dimension](0)

    this.transitioning = 1

    var complete = function () {
      this.$element
        .removeClass('collapsing')
fat's avatar
fat committed
522
        .addClass('collapse in')
523
524
525
526
527
528
529
530
        [dimension]('auto')
      this.transitioning = 0
      this.$element.trigger('shown.bs.collapse')
    }

    if (!$.support.transition) return complete.call(this)

    var scrollSize = $.camelCase(['scroll', dimension].join('-'))
531

532
533
534
535
    this.$element
      .one($.support.transition.end, $.proxy(complete, this))
      .emulateTransitionEnd(350)
      [dimension](this.$element[0][scrollSize])
536
  }
537

538
539
  Collapse.prototype.hide = function () {
    if (this.transitioning || !this.$element.hasClass('in')) return
fat's avatar
fat committed
540
541
542
543
544

    var startEvent = $.Event('hide.bs.collapse')
    this.$element.trigger(startEvent)
    if (startEvent.isDefaultPrevented()) return

545
    var dimension = this.dimension()
546

547
548
549
    this.$element
      [dimension](this.$element[dimension]())
      [0].offsetHeight
550

551
    this.$element
552
      .addClass('collapsing')
553
      .removeClass('collapse')
554
      .removeClass('in')
555

556
    this.transitioning = 1
557

558
    var complete = function () {
559
560
561
562
563
      this.transitioning = 0
      this.$element
        .trigger('hidden.bs.collapse')
        .removeClass('collapsing')
        .addClass('collapse')
564
565
    }

566
    if (!$.support.transition) return complete.call(this)
567

568
569
570
571
    this.$element
      [dimension](0)
      .one($.support.transition.end, $.proxy(complete, this))
      .emulateTransitionEnd(350)
572
  }
573

574
575
  Collapse.prototype.toggle = function () {
    this[this.$element.hasClass('in') ? 'hide' : 'show']()
576
577
578
  }


579
580
  // COLLAPSE PLUGIN DEFINITION
  // ==========================
581
582

  var old = $.fn.collapse
583
584
585

  $.fn.collapse = function (option) {
    return this.each(function () {
586
      var $this   = $(this)
fat's avatar
fat committed
587
      var data    = $this.data('bs.collapse')
588
589
      var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)

590
      if (!data && options.toggle && option == 'show') option = !option
fat's avatar
fat committed
591
      if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
592
593
594
595
596
597
598
      if (typeof option == 'string') data[option]()
    })
  }

  $.fn.collapse.Constructor = Collapse


599
600
  // COLLAPSE NO CONFLICT
  // ====================
601

602
603
604
605
606
607
  $.fn.collapse.noConflict = function () {
    $.fn.collapse = old
    return this
  }


608
609
  // COLLAPSE DATA-API
  // =================
610

611
  $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) {
612
613
    var $this   = $(this), href
    var target  = $this.attr('data-target')
614
615
        || e.preventDefault()
        || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
616
617
618
619
    var $target = $(target)
    var data    = $target.data('bs.collapse')
    var option  = data ? 'toggle' : $this.data()
    var parent  = $this.attr('data-parent')
Mark Otto's avatar
Mark Otto committed
620
    var $parent = parent && $(parent)
621

fat's avatar
fat committed
622
    if (!data || !data.transitioning) {
623
      if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addClass('collapsed')
624
      $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
fat's avatar
fat committed
625
626
    }

627
    $target.collapse(option)
628
629
  })

Chris Rebert's avatar
Chris Rebert committed
630
}(jQuery);
631

632
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
633
 * Bootstrap: dropdown.js v3.1.1
Mark Otto's avatar
Mark Otto committed
634
 * http://getbootstrap.com/javascript/#dropdowns
635
 * ========================================================================
636
 * Copyright 2011-2014 Twitter, Inc.
637
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
638
 * ======================================================================== */
639
640


641
642
+function ($) {
  'use strict';
643

644
645
  // DROPDOWN CLASS DEFINITION
  // =========================
646

647
648
649
  var backdrop = '.dropdown-backdrop'
  var toggle   = '[data-toggle=dropdown]'
  var Dropdown = function (element) {
650
    $(element).on('click.bs.dropdown', this.toggle)
651
  }
652

653
654
  Dropdown.prototype.toggle = function (e) {
    var $this = $(this)
655

656
    if ($this.is('.disabled, :disabled')) return
657

658
659
    var $parent  = getParent($this)
    var isActive = $parent.hasClass('open')
660

661
    clearMenus()
fat's avatar
fat committed
662

663
    if (!isActive) {
fat's avatar
fat committed
664
      if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
Mark Otto's avatar
Mark Otto committed
665
        // if mobile we use a backdrop because click events don't delegate
Jacob Thornton's avatar
Jacob Thornton committed
666
        $('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
fat's avatar
fat committed
667
      }
668

669
670
      var relatedTarget = { relatedTarget: this }
      $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
671
672
673
674
675

      if (e.isDefaultPrevented()) return

      $parent
        .toggleClass('open')
676
        .trigger('shown.bs.dropdown', relatedTarget)
677

678
      $this.trigger('focus')
fat's avatar
rebuild    
fat committed
679
    }
680

681
682
    return false
  }
683

684
685
  Dropdown.prototype.keydown = function (e) {
    if (!/(38|40|27)/.test(e.keyCode)) return
686

687
    var $this = $(this)
688

689
690
    e.preventDefault()
    e.stopPropagation()
691

692
    if ($this.is('.disabled, :disabled')) return
693

694
695
    var $parent  = getParent($this)
    var isActive = $parent.hasClass('open')
696

697
    if (!isActive || (isActive && e.keyCode == 27)) {
698
699
      if (e.which == 27) $parent.find(toggle).trigger('focus')
      return $this.trigger('click')
700
    }
701

fat's avatar
fat committed
702
703
    var desc = ' li:not(.divider):visible a'
    var $items = $parent.find('[role=menu]' + desc + ', [role=listbox]' + desc)
704

705
    if (!$items.length) return
706

707
    var index = $items.index($items.filter(':focus'))
708

709
710
    if (e.keyCode == 38 && index > 0)                 index--                        // up
    if (e.keyCode == 40 && index < $items.length - 1) index++                        // down
Mark Otto's avatar
Mark Otto committed
711
    if (!~index)                                      index = 0
712

713
    $items.eq(index).trigger('focus')
714
715
  }

716
  function clearMenus(e) {
717
    $(backdrop).remove()
718
    $(toggle).each(function () {
719
      var $parent = getParent($(this))
720
      var relatedTarget = { relatedTarget: this }
721
      if (!$parent.hasClass('open')) return
722
      $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
723
      if (e.isDefaultPrevented()) return
724
      $parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
725
    })
726
727
728
729
730
731
732
  }

  function getParent($this) {
    var selector = $this.attr('data-target')

    if (!selector) {
      selector = $this.attr('href')
733
      selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
734
735
    }

736
    var $parent = selector && $(selector)
737

738
    return $parent && $parent.length ? $parent : $this.parent()
739
740
741
  }


742
743
  // DROPDOWN PLUGIN DEFINITION
  // ==========================
744

745
746
  var old = $.fn.dropdown

747
748
749
  $.fn.dropdown = function (option) {
    return this.each(function () {
      var $this = $(this)
750
      var data  = $this.data('bs.dropdown')
751

752
      if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
753
754
755
756
757
758
759
      if (typeof option == 'string') data[option].call($this)
    })
  }

  $.fn.dropdown.Constructor = Dropdown


760
761
  // DROPDOWN NO CONFLICT
  // ====================
762
763
764
765
766
767
768

  $.fn.dropdown.noConflict = function () {
    $.fn.dropdown = old
    return this
  }


769
770
771
  // APPLY TO STANDARD DROPDOWN ELEMENTS
  // ===================================

772
  $(document)
773
774
    .on('click.bs.dropdown.data-api', clearMenus)
    .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
Mark Otto's avatar
Mark Otto committed
775
    .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
fat's avatar
fat committed
776
    .on('keydown.bs.dropdown.data-api', toggle + ', [role=menu], [role=listbox]', Dropdown.prototype.keydown)
777

Chris Rebert's avatar
Chris Rebert committed
778
}(jQuery);
779

780
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
781
 * Bootstrap: modal.js v3.1.1
Mark Otto's avatar
Mark Otto committed
782
 * http://getbootstrap.com/javascript/#modals
783
 * ========================================================================
784
 * Copyright 2011-2014 Twitter, Inc.
785
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
786
 * ======================================================================== */
787
788


789
790
+function ($) {
  'use strict';
791

fat's avatar
fat committed
792
793
  // MODAL CLASS DEFINITION
  // ======================
794

Jacob Thornton's avatar
Jacob Thornton committed
795
  var Modal = function (element, options) {
fat's avatar
fat committed
796
    this.options   = options
fat's avatar
rebuild    
fat committed
797
    this.$element  = $(element)
fat's avatar
fat committed
798
799
    this.$backdrop =
    this.isShown   = null
800

801
802
803
804
805
806
807
    if (this.options.remote) {
      this.$element
        .find('.modal-content')
        .load(this.options.remote, $.proxy(function () {
          this.$element.trigger('loaded.bs.modal')
        }, this))
    }
fat's avatar
fat committed
808
  }
809

fat's avatar
fat committed
810
  Modal.DEFAULTS = {
Mark Otto's avatar
Mark Otto committed
811
812
813
    backdrop: true,
    keyboard: true,
    show: true
fat's avatar
fat committed
814
  }
815

Jacob Thornton's avatar
Jacob Thornton committed
816
817
  Modal.prototype.toggle = function (_relatedTarget) {
    return this[!this.isShown ? 'show' : 'hide'](_relatedTarget)
fat's avatar
fat committed
818
  }
819

Jacob Thornton's avatar
Jacob Thornton committed
820
  Modal.prototype.show = function (_relatedTarget) {
fat's avatar
fat committed
821
    var that = this
Jacob Thornton's avatar
Jacob Thornton committed
822
    var e    = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
823

fat's avatar
fat committed
824
    this.$element.trigger(e)
825

fat's avatar
fat committed
826
    if (this.isShown || e.isDefaultPrevented()) return
827

fat's avatar
fat committed
828
    this.isShown = true
829

fat's avatar
fat committed
830
    this.escape()
831

832
    this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
fat's avatar
rebuild    
fat committed
833

fat's avatar
fat committed
834
835
    this.backdrop(function () {
      var transition = $.support.transition && that.$element.hasClass('fade')
836

fat's avatar
fat committed
837
      if (!that.$element.parent().length) {
Jacob Thornton's avatar
Jacob Thornton committed
838
        that.$element.appendTo(document.body) // don't move modals dom position
fat's avatar
fat committed
839
      }
840

841
842
843
      that.$element
        .show()
        .scrollTop(0)
844

fat's avatar
fat committed
845
846
847
      if (transition) {
        that.$element[0].offsetWidth // force reflow
      }
848

fat's avatar
fat committed
849
850
851
      that.$element
        .addClass('in')
        .attr('aria-hidden', false)
852

fat's avatar
fat committed
853
      that.enforceFocus()
854

Jacob Thornton's avatar
Jacob Thornton committed
855
856
      var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })

fat's avatar
fat committed
857
      transition ?
fat's avatar
fat committed
858
        that.$element.find('.modal-dialog') // wait for modal to slide in
859
          .one($.support.transition.end, function () {
860
            that.$element.trigger('focus').trigger(e)
861
862
          })
          .emulateTransitionEnd(300) :
863
        that.$element.trigger('focus').trigger(e)
fat's avatar
fat committed
864
865
    })
  }
866

fat's avatar
fat committed
867
  Modal.prototype.hide = function (e) {
fat's avatar
fat committed
868
    if (e) e.preventDefault()
869

Mark Otto's avatar
Mark Otto committed
870
    e = $.Event('hide.bs.modal')
871

fat's avatar
fat committed
872
    this.$element.trigger(e)
873

fat's avatar
fat committed
874
    if (!this.isShown || e.isDefaultPrevented()) return
875

fat's avatar
fat committed
876
    this.isShown = false
877

fat's avatar
fat committed
878
    this.escape()
879

Mark Otto's avatar
Mark Otto committed
880
    $(document).off('focusin.bs.modal')
881

fat's avatar
fat committed
882
883
884
    this.$element
      .removeClass('in')
      .attr('aria-hidden', true)
885
      .off('click.dismiss.bs.modal')
886

fat's avatar
fat committed
887
    $.support.transition && this.$element.hasClass('fade') ?
888
889
890
      this.$element
        .one($.support.transition.end, $.proxy(this.hideModal, this))
        .emulateTransitionEnd(300) :
fat's avatar
fat committed
891
892
      this.hideModal()
  }
893

fat's avatar
fat committed
894
  Modal.prototype.enforceFocus = function () {
Jacob Thornton's avatar
Jacob Thornton committed
895
896
    $(document)
      .off('focusin.bs.modal') // guard against infinite focus loop
fat's avatar
fat committed
897
898
      .on('focusin.bs.modal', $.proxy(function (e) {
        if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
899
          this.$element.trigger('focus')
fat's avatar
fat committed
900
901
        }
      }, this))
fat's avatar
fat committed
902
  }
903

fat's avatar
fat committed
904
905
  Modal.prototype.escape = function () {
    if (this.isShown && this.options.keyboard) {
fat's avatar
fat committed
906
      this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {
fat's avatar
fat committed
907
        e.which == 27 && this.hide()
fat's avatar
fat committed
908
      }, this))
fat's avatar
fat committed
909
    } else if (!this.isShown) {
Mark Otto's avatar
Mark Otto committed
910
      this.$element.off('keyup.dismiss.bs.modal')
fat's avatar
fat committed
911
912
    }
  }
913

fat's avatar
fat committed
914
915
916
917
918
  Modal.prototype.hideModal = function () {
    var that = this
    this.$element.hide()
    this.backdrop(function () {
      that.removeBackdrop()
Mark Otto's avatar
Mark Otto committed
919
      that.$element.trigger('hidden.bs.modal')
fat's avatar
fat committed
920
921
    })
  }
922

fat's avatar
fat committed
923
924
925
926
  Modal.prototype.removeBackdrop = function () {
    this.$backdrop && this.$backdrop.remove()
    this.$backdrop = null
  }
927

fat's avatar
fat committed
928
929
  Modal.prototype.backdrop = function (callback) {
    var animate = this.$element.hasClass('fade') ? 'fade' : ''
930

fat's avatar
fat committed
931
932
    if (this.isShown && this.options.backdrop) {
      var doAnimate = $.support.transition && animate
933

fat's avatar
fat committed
934
935
      this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
        .appendTo(document.body)
936

937
      this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
fat's avatar
fat committed
938
939
940
941
942
        if (e.target !== e.currentTarget) return
        this.options.backdrop == 'static'
          ? this.$element[0].focus.call(this.$element[0])
          : this.hide.call(this)
      }, this))
943

fat's avatar
fat committed
944
      if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
945

fat's avatar
fat committed
946
      this.$backdrop.addClass('in')
947

fat's avatar
fat committed
948
      if (!callback) return
949

fat's avatar
fat committed
950
      doAnimate ?
951
952
953
        this.$backdrop
          .one($.support.transition.end, callback)
          .emulateTransitionEnd(150) :
fat's avatar
fat committed
954
        callback()
955

fat's avatar
fat committed
956
957
    } else if (!this.isShown && this.$backdrop) {
      this.$backdrop.removeClass('in')
958

Mark Otto's avatar
Mark Otto committed
959
      $.support.transition && this.$element.hasClass('fade') ?
960
961
962
        this.$backdrop
          .one($.support.transition.end, callback)
          .emulateTransitionEnd(150) :
fat's avatar
fat committed
963
        callback()
964

fat's avatar
fat committed
965
966
967
    } else if (callback) {
      callback()
    }
968
969
970
  }


fat's avatar
fat committed
971
972
  // MODAL PLUGIN DEFINITION
  // =======================
973

974
975
  var old = $.fn.modal

Jacob Thornton's avatar
Jacob Thornton committed
976
  $.fn.modal = function (option, _relatedTarget) {
977
    return this.each(function () {
fat's avatar
fat committed
978
      var $this   = $(this)
Mark Otto's avatar
Mark Otto committed
979
      var data    = $this.data('bs.modal')
fat's avatar
fat committed
980
981
      var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)

Mark Otto's avatar
Mark Otto committed
982
      if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
Jacob Thornton's avatar
Jacob Thornton committed
983
984
      if (typeof option == 'string') data[option](_relatedTarget)
      else if (options.show) data.show(_relatedTarget)
985
986
987
988
989
990
    })
  }

  $.fn.modal.Constructor = Modal


fat's avatar
fat committed
991
992
  // MODAL NO CONFLICT
  // =================
993
994
995
996
997
998
999

  $.fn.modal.noConflict = function () {
    $.fn.modal = old
    return this
  }


fat's avatar
fat committed
1000
1001
  // MODAL DATA-API
  // ==============
1002

Mark Otto's avatar
Mark Otto committed
1003
  $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
fat's avatar
fat committed
1004
1005
1006
    var $this   = $(this)
    var href    = $this.attr('href')
    var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7
fat's avatar
fat committed
1007
    var option  = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
1008

fat's avatar
fat committed
1009
    if ($this.is('a')) e.preventDefault()
1010

1011
    $target
Jacob Thornton's avatar
Jacob Thornton committed
1012
      .modal(option, this)
1013
      .one('hide', function () {
1014
        $this.is(':visible') && $this.trigger('focus')
1015
      })
Jacob Thornton's avatar
Jacob Thornton committed
1016
  })
1017

Jacob Thornton's avatar
Jacob Thornton committed
1018
  $(document)
1019
    .on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })
Jacob Thornton's avatar
Jacob Thornton committed
1020
    .on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })
1021

Chris Rebert's avatar
Chris Rebert committed
1022
}(jQuery);
1023

1024
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
1025
 * Bootstrap: tooltip.js v3.1.1
Mark Otto's avatar
Mark Otto committed
1026
 * http://getbootstrap.com/javascript/#tooltip
1027
 * Inspired by the original jQuery.tipsy by Jason Frame
1028
 * ========================================================================
1029
 * Copyright 2011-2014 Twitter, Inc.
1030
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1031
 * ======================================================================== */
1032
1033


1034
1035
+function ($) {
  'use strict';
1036

1037
  // TOOLTIP PUBLIC CLASS DEFINITION
fat's avatar
fat committed
1038
  // ===============================
1039

1040
1041
1042
1043
1044
1045
1046
  var Tooltip = function (element, options) {
    this.type       =
    this.options    =
    this.enabled    =
    this.timeout    =
    this.hoverState =
    this.$element   = null
1047

1048
1049
    this.init('tooltip', element, options)
  }
1050

1051
  Tooltip.DEFAULTS = {
Mark Otto's avatar
Mark Otto committed
1052
1053
1054
1055
1056
1057
1058
1059
1060
    animation: true,
    placement: 'top',
    selector: false,
    template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
    trigger: 'hover focus',
    title: '',
    delay: 0,
    html: false,
    container: false
1061
  }
1062

1063
1064
1065
1066
1067
  Tooltip.prototype.init = function (type, element, options) {
    this.enabled  = true
    this.type     = type
    this.$element = $(element)
    this.options  = this.getOptions(options)
1068

1069
    var triggers = this.options.trigger.split(' ')
1070

1071
1072
    for (var i = triggers.length; i--;) {
      var trigger = triggers[i]
fat's avatar
fat committed
1073

1074
1075
1076
      if (trigger == 'click') {
        this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
      } else if (trigger != 'manual') {
1077
1078
        var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin'
        var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
1079

Jacob Thornton's avatar
Jacob Thornton committed
1080
        this.$element.on(eventIn  + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
1081
1082
1083
        this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
      }
    }
1084

1085
1086
1087
    this.options.selector ?
      (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
      this.fixTitle()
fat's avatar
fat committed
1088
  }
1089

1090
1091
  Tooltip.prototype.getDefaults = function () {
    return Tooltip.DEFAULTS
1092
  }
1093

1094
1095
  Tooltip.prototype.getOptions = function (options) {
    options = $.extend({}, this.getDefaults(), this.$element.data(), options)
1096

1097
1098
    if (options.delay && typeof options.delay == 'number') {
      options.delay = {
Mark Otto's avatar
Mark Otto committed
1099
1100
        show: options.delay,
        hide: options.delay
1101
1102
      }
    }
1103

1104
    return options
1105
  }
Jacob Thornton's avatar
Jacob Thornton committed
1106

Jacob Thornton's avatar
Jacob Thornton committed
1107
  Tooltip.prototype.getDelegateOptions = function () {
1108
    var options  = {}
Jacob Thornton's avatar
Jacob Thornton committed
1109
    var defaults = this.getDefaults()
1110

1111
1112
1113
    this._options && $.each(this._options, function (key, value) {
      if (defaults[key] != value) options[key] = value
    })
fat's avatar
rebuild    
fat committed
1114

Jacob Thornton's avatar
Jacob Thornton committed
1115
1116
1117
1118
    return options
  }

  Tooltip.prototype.enter = function (obj) {
1119
    var self = obj instanceof this.constructor ?
Jacob Thornton's avatar
Jacob Thornton committed
1120
      obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
1121

1122
    clearTimeout(self.timeout)
1123

1124
1125
    self.hoverState = 'in'

1126
    if (!self.options.delay || !self.options.delay.show) return self.show()
1127

1128
    self.timeout = setTimeout(function () {
1129
1130
      if (self.hoverState == 'in') self.show()
    }, self.options.delay.show)
1131
  }
1132

1133
1134
  Tooltip.prototype.leave = function (obj) {
    var self = obj instanceof this.constructor ?
Jacob Thornton's avatar
Jacob Thornton committed
1135
      obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
1136

1137
    clearTimeout(self.timeout)
fat's avatar
fat committed
1138

1139
1140
    self.hoverState = 'out'

1141
    if (!self.options.delay || !self.options.delay.hide) return self.hide()
1142

1143
    self.timeout = setTimeout(function () {
1144
1145
      if (self.hoverState == 'out') self.hide()
    }, self.options.delay.hide)
1146
  }
1147

1148
  Tooltip.prototype.show = function () {
Mark Otto's avatar
Mark Otto committed
1149
    var e = $.Event('show.bs.' + this.type)
1150

1151
1152
    if (this.hasContent() && this.enabled) {
      this.$element.trigger(e)
1153

1154
      if (e.isDefaultPrevented()) return
fat's avatar
fat committed
1155
      var that = this;
1156

1157
      var $tip = this.tip()
fat's avatar
fat committed
1158

1159
      this.setContent()
fat's avatar
fat committed
1160

1161
      if (this.options.animation) $tip.addClass('fade')
fat's avatar
fat committed
1162

1163
1164
1165
      var placement = typeof this.options.placement == 'function' ?
        this.options.placement.call(this, $tip[0], this.$element[0]) :
        this.options.placement
1166

1167
1168
1169
      var autoToken = /\s?auto?\s?/i
      var autoPlace = autoToken.test(placement)
      if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
1170

1171
1172
1173
1174
      $tip
        .detach()
        .css({ top: 0, left: 0, display: 'block' })
        .addClass(placement)
1175

1176
      this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
1177

1178
1179
1180
      var pos          = this.getPosition()
      var actualWidth  = $tip[0].offsetWidth
      var actualHeight = $tip[0].offsetHeight
fat's avatar
fat committed
1181

1182
1183
      if (autoPlace) {
        var $parent = this.$element.parent()
1184

1185
1186
1187
1188
1189
        var orgPlacement = placement
        var docScroll    = document.documentElement.scrollTop || document.body.scrollTop
        var parentWidth  = this.options.container == 'body' ? window.innerWidth  : $parent.outerWidth()
        var parentHeight = this.options.container == 'body' ? window.innerHeight : $parent.outerHeight()
        var parentLeft   = this.options.container == 'body' ? 0 : $parent.offset().left
fat's avatar
fat committed
1190

1191
1192
1193
1194
1195
        placement = placement == 'bottom' && pos.top   + pos.height  + actualHeight - docScroll > parentHeight  ? 'top'    :
                    placement == 'top'    && pos.top   - docScroll   - actualHeight < 0                         ? 'bottom' :
                    placement == 'right'  && pos.right + actualWidth > parentWidth                              ? 'left'   :
                    placement == 'left'   && pos.left  - actualWidth < parentLeft                               ? 'right'  :
                    placement
fat's avatar
fat committed
1196

1197
1198
1199
1200
1201
        $tip
          .removeClass(orgPlacement)
          .addClass(placement)
      }

1202
      var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
1203

fat's avatar
fat committed
1204
      this.applyPlacement(calculatedOffset, placement)
1205
      this.hoverState = null
fat's avatar
fat committed
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215

      var complete = function() {
        that.$element.trigger('shown.bs.' + that.type)
      }

      $.support.transition && this.$tip.hasClass('fade') ?
        $tip
          .one($.support.transition.end, complete)
          .emulateTransitionEnd(150) :
        complete()
fat's avatar
fat committed
1216
    }
1217
  }
fat's avatar
fat committed
1218

1219
  Tooltip.prototype.applyPlacement = function (offset, placement) {
1220
1221
1222
1223
    var replace
    var $tip   = this.tip()
    var width  = $tip[0].offsetWidth
    var height = $tip[0].offsetHeight
fat's avatar
fat committed
1224

1225
    // manually read margins because getBoundingClientRect includes difference
fat's avatar
fat committed
1226
1227
1228
1229
1230
1231
1232
1233
1234
    var marginTop = parseInt($tip.css('margin-top'), 10)
    var marginLeft = parseInt($tip.css('margin-left'), 10)

    // we must check for NaN for ie 8/9
    if (isNaN(marginTop))  marginTop  = 0
    if (isNaN(marginLeft)) marginLeft = 0

    offset.top  = offset.top  + marginTop
    offset.left = offset.left + marginLeft
fat's avatar
fat committed
1235

1236
1237
    // $.fn.offset doesn't round pixel values
    // so we use setOffset directly with our own function B-0
1238
    $.offset.setOffset($tip[0], $.extend({
1239
1240
1241
1242
1243
1244
1245
1246
1247
      using: function (props) {
        $tip.css({
          top: Math.round(props.top),
          left: Math.round(props.left)
        })
      }
    }, offset), 0)

    $tip.addClass('in')
fat's avatar
fat committed
1248

fat's avatar
fat committed
1249
    // check to see if placing tip in new offset caused the tip to resize itself
1250
1251
    var actualWidth  = $tip[0].offsetWidth
    var actualHeight = $tip[0].offsetHeight
fat's avatar
fat committed
1252

1253
1254
    if (placement == 'top' && actualHeight != height) {
      replace = true
fat's avatar
fat committed
1255
      offset.top = offset.top + height - actualHeight
fat's avatar
fat committed
1256
1257
    }

fat's avatar
fat committed
1258
    if (/bottom|top/.test(placement)) {
1259
      var delta = 0
1260

fat's avatar
fat committed
1261
      if (offset.left < 0) {
1262
1263
        delta       = offset.left * -2
        offset.left = 0
fat's avatar
fat committed
1264

1265
        $tip.offset(offset)
1266

1267
1268
1269
        actualWidth  = $tip[0].offsetWidth
        actualHeight = $tip[0].offsetHeight
      }
1270

1271
1272
1273
1274
      this.replaceArrow(delta - width + actualWidth, actualWidth, 'left')
    } else {
      this.replaceArrow(actualHeight - height, actualHeight, 'top')
    }
1275

1276
    if (replace) $tip.offset(offset)
1277
  }
1278

1279
  Tooltip.prototype.replaceArrow = function (delta, dimension, position) {
XhmikosR's avatar
XhmikosR committed
1280
    this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + '%') : '')
fat's avatar
fat committed
1281
  }
1282

1283
1284
1285
  Tooltip.prototype.setContent = function () {
    var $tip  = this.tip()
    var title = this.getTitle()
1286

1287
1288
1289
    $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
    $tip.removeClass('fade in top bottom left right')
  }
1290

1291
1292
1293
1294
  Tooltip.prototype.hide = function () {
    var that = this
    var $tip = this.tip()
    var e    = $.Event('hide.bs.' + this.type)
1295

1296
1297
    function complete() {
      if (that.hoverState != 'in') $tip.detach()
fat's avatar
fat committed
1298
      that.$element.trigger('hidden.bs.' + that.type)
1299
    }
Jacob Thornton's avatar
Jacob Thornton committed
1300

1301
    this.$element.trigger(e)
1302

1303
    if (e.isDefaultPrevented()) return
1304

1305
    $tip.removeClass('in')
1306

1307
1308
    $.support.transition && this.$tip.hasClass('fade') ?
      $tip
Jacob Thornton's avatar
Jacob Thornton committed
1309
        .one($.support.transition.end, complete)
1310
        .emulateTransitionEnd(150) :
Jacob Thornton's avatar
Jacob Thornton committed
1311
      complete()
1312

1313
    this.hoverState = null
1314

1315
    return this
1316
1317
  }

1318
1319
1320
1321
  Tooltip.prototype.fixTitle = function () {
    var $e = this.$element
    if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
      $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
1322
    }
1323
  }
1324

1325
1326
1327
  Tooltip.prototype.hasContent = function () {
    return this.getTitle()
  }
1328

1329
1330
1331
  Tooltip.prototype.getPosition = function () {
    var el = this.$element[0]
    return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : {
Mark Otto's avatar
Mark Otto committed
1332
1333
      width: el.offsetWidth,
      height: el.offsetHeight
1334
1335
    }, this.$element.offset())
  }
1336

1337
  Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
fat's avatar
fat committed
1338
1339
1340
1341
1342
1343
    return placement == 'bottom' ? { top: pos.top + pos.height,   left: pos.left + pos.width / 2 - actualWidth / 2  } :
           placement == 'top'    ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2  } :
           placement == 'left'   ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
        /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width   }
  }

1344
1345
1346
1347
  Tooltip.prototype.getTitle = function () {
    var title
    var $e = this.$element
    var o  = this.options
1348

1349
1350
    title = $e.attr('data-original-title')
      || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)
1351

1352
    return title
1353
  }
1354

1355
1356
1357
  Tooltip.prototype.tip = function () {
    return this.$tip = this.$tip || $(this.options.template)
  }
1358

Mark Otto's avatar
Mark Otto committed
1359
  Tooltip.prototype.arrow = function () {
fat's avatar
fat committed
1360
    return this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')
1361
  }
1362

1363
1364
1365
1366
1367
1368
1369
  Tooltip.prototype.validate = function () {
    if (!this.$element[0].parentNode) {
      this.hide()
      this.$element = null
      this.options  = null
    }
  }
1370

1371
1372
1373
  Tooltip.prototype.enable = function () {
    this.enabled = true
  }
1374

1375
1376
1377
  Tooltip.prototype.disable = function () {
    this.enabled = false
  }
1378

1379
1380
1381
  Tooltip.prototype.toggleEnabled = function () {
    this.enabled = !this.enabled
  }
Mark Otto's avatar
Mark Otto committed
1382

1383
  Tooltip.prototype.toggle = function (e) {
Jacob Thornton's avatar
Jacob Thornton committed
1384
    var self = e ? $(e.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) : this
1385
1386
    self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
  }
1387

1388
  Tooltip.prototype.destroy = function () {
fat's avatar
rebuild    
fat committed
1389
    clearTimeout(this.timeout)
1390
    this.hide().$element.off('.' + this.type).removeData('bs.' + this.type)
fat's avatar
fat committed
1391
  }
1392
1393


1394
1395
  // TOOLTIP PLUGIN DEFINITION
  // =========================
1396

1397
  var old = $.fn.tooltip
1398

1399
  $.fn.tooltip = function (option) {
1400
    return this.each(function () {
1401
1402
1403
      var $this   = $(this)
      var data    = $this.data('bs.tooltip')
      var options = typeof option == 'object' && option
fat's avatar
fat committed
1404

fat's avatar
rebuild    
fat committed
1405
      if (!data && option == 'destroy') return
1406
      if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
1407
1408
1409
1410
      if (typeof option == 'string') data[option]()
    })
  }

1411
  $.fn.tooltip.Constructor = Tooltip
1412

1413

1414
1415
  // TOOLTIP NO CONFLICT
  // ===================
1416

1417
1418
  $.fn.tooltip.noConflict = function () {
    $.fn.tooltip = old
1419
1420
1421
    return this
  }

Chris Rebert's avatar
Chris Rebert committed
1422
}(jQuery);
1423

1424
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
1425
 * Bootstrap: popover.js v3.1.1
Mark Otto's avatar
Mark Otto committed
1426
 * http://getbootstrap.com/javascript/#popovers
1427
 * ========================================================================
1428
 * Copyright 2011-2014 Twitter, Inc.
1429
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1430
 * ======================================================================== */
1431
1432


1433
1434
+function ($) {
  'use strict';
1435

1436
  // POPOVER PUBLIC CLASS DEFINITION
1437
  // ===============================
fat's avatar
fat committed
1438

1439
1440
  var Popover = function (element, options) {
    this.init('popover', element, options)
1441
1442
  }

fat's avatar
fat committed
1443
1444
  if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')

Mark Otto's avatar
Mark Otto committed
1445
1446
1447
1448
1449
  Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.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>'
1450
  })
1451

fat's avatar
fat committed
1452

1453
1454
  // NOTE: POPOVER EXTENDS tooltip.js
  // ================================
fat's avatar
fat committed
1455

1456
  Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
1457

1458
  Popover.prototype.constructor = Popover
fat's avatar
fat committed
1459

1460
1461
1462
  Popover.prototype.getDefaults = function () {
    return Popover.DEFAULTS
  }
1463

1464
1465
1466
1467
1468
1469
  Popover.prototype.setContent = function () {
    var $tip    = this.tip()
    var title   = this.getTitle()
    var content = this.getContent()

    $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
1470
1471
1472
    $tip.find('.popover-content')[ // we use append for html objects to maintain js events
      this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
    ](content)
1473
1474
1475

    $tip.removeClass('fade top bottom left right in')

1476
1477
    // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
    // this manually by checking the contents.
Jacob Thornton's avatar
Jacob Thornton committed
1478
    if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
1479
1480
  }

1481
1482
  Popover.prototype.hasContent = function () {
    return this.getTitle() || this.getContent()
1483
1484
  }

1485
1486
1487
  Popover.prototype.getContent = function () {
    var $e = this.$element
    var o  = this.options
1488

1489
1490
1491
1492
1493
    return $e.attr('data-content')
      || (typeof o.content == 'function' ?
            o.content.call($e[0]) :
            o.content)
  }
1494

Mark Otto's avatar
Mark Otto committed
1495
  Popover.prototype.arrow = function () {
fat's avatar
fat committed
1496
1497
1498
    return this.$arrow = this.$arrow || this.tip().find('.arrow')
  }

1499
1500
1501
  Popover.prototype.tip = function () {
    if (!this.$tip) this.$tip = $(this.options.template)
    return this.$tip
fat's avatar
fat committed
1502
  }
1503

1504

1505
1506
  // POPOVER PLUGIN DEFINITION
  // =========================
1507

1508
  var old = $.fn.popover
1509

1510
1511
1512
1513
1514
  $.fn.popover = function (option) {
    return this.each(function () {
      var $this   = $(this)
      var data    = $this.data('bs.popover')
      var options = typeof option == 'object' && option
1515

fat's avatar
rebuild    
fat committed
1516
      if (!data && option == 'destroy') return
1517
1518
1519
      if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
      if (typeof option == 'string') data[option]()
    })
1520
1521
  }

1522
  $.fn.popover.Constructor = Popover
fat's avatar
fat committed
1523

1524

1525
1526
  // POPOVER NO CONFLICT
  // ===================
1527

1528
1529
1530
1531
  $.fn.popover.noConflict = function () {
    $.fn.popover = old
    return this
  }
1532

Chris Rebert's avatar
Chris Rebert committed
1533
}(jQuery);
1534

1535
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
1536
 * Bootstrap: scrollspy.js v3.1.1
Mark Otto's avatar
Mark Otto committed
1537
 * http://getbootstrap.com/javascript/#scrollspy
1538
 * ========================================================================
1539
 * Copyright 2011-2014 Twitter, Inc.
1540
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1541
 * ======================================================================== */
1542
1543


1544
1545
+function ($) {
  'use strict';
1546

1547
1548
  // SCROLLSPY CLASS DEFINITION
  // ==========================
1549

1550
1551
1552
  function ScrollSpy(element, options) {
    var href
    var process  = $.proxy(this.process, this)
1553

fat's avatar
fat committed
1554
    this.$element       = $(element).is('body') ? $(window) : $(element)
1555
    this.$body          = $('body')
fat's avatar
fat committed
1556
    this.$scrollElement = this.$element.on('scroll.bs.scroll-spy.data-api', process)
1557
1558
1559
1560
1561
1562
1563
    this.options        = $.extend({}, ScrollSpy.DEFAULTS, options)
    this.selector       = (this.options.target
      || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
      || '') + ' .nav li > a'
    this.offsets        = $([])
    this.targets        = $([])
    this.activeTarget   = null
1564

1565
1566
1567
    this.refresh()
    this.process()
  }
1568

1569
1570
1571
  ScrollSpy.DEFAULTS = {
    offset: 10
  }
1572

1573
  ScrollSpy.prototype.refresh = function () {
fat's avatar
fat committed
1574
1575
    var offsetMethod = this.$element[0] == window ? 'offset' : 'position'

1576
1577
    this.offsets = $([])
    this.targets = $([])
1578

1579
1580
1581
1582
1583
1584
    var self     = this
    var $targets = this.$body
      .find(this.selector)
      .map(function () {
        var $el   = $(this)
        var href  = $el.data('target') || $el.attr('href')
1585
        var $href = /^#./.test(href) && $(href)
1586

1587
1588
        return ($href
          && $href.length
1589
          && $href.is(':visible')
fat's avatar
fat committed
1590
          && [[ $href[offsetMethod]().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]]) || null
1591
1592
1593
1594
1595
1596
1597
      })
      .sort(function (a, b) { return a[0] - b[0] })
      .each(function () {
        self.offsets.push(this[0])
        self.targets.push(this[1])
      })
  }
1598

1599
1600
1601
1602
1603
1604
1605
1606
  ScrollSpy.prototype.process = function () {
    var scrollTop    = this.$scrollElement.scrollTop() + this.options.offset
    var scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight
    var maxScroll    = scrollHeight - this.$scrollElement.height()
    var offsets      = this.offsets
    var targets      = this.targets
    var activeTarget = this.activeTarget
    var i
1607

1608
1609
1610
    if (scrollTop >= maxScroll) {
      return activeTarget != (i = targets.last()[0]) && this.activate(i)
    }
1611

1612
    if (activeTarget && scrollTop <= offsets[0]) {
1613
      return activeTarget != (i = targets[0]) && this.activate(i)
1614
1615
    }

1616
1617
1618
1619
1620
    for (i = offsets.length; i--;) {
      activeTarget != targets[i]
        && scrollTop >= offsets[i]
        && (!offsets[i + 1] || scrollTop <= offsets[i + 1])
        && this.activate( targets[i] )
1621
    }
1622
1623
  }

1624
1625
  ScrollSpy.prototype.activate = function (target) {
    this.activeTarget = target
1626

1627
    $(this.selector)
fat's avatar
fat committed
1628
      .parentsUntil(this.options.target, '.active')
1629
      .removeClass('active')
1630

1631
1632
1633
    var selector = this.selector +
        '[data-target="' + target + '"],' +
        this.selector + '[href="' + target + '"]'
1634

1635
1636
1637
    var active = $(selector)
      .parents('li')
      .addClass('active')
1638

1639
    if (active.parent('.dropdown-menu').length) {
1640
1641
1642
      active = active
        .closest('li.dropdown')
        .addClass('active')
1643
    }
1644

1645
    active.trigger('activate.bs.scrollspy')
1646
  }
1647
1648


1649
1650
  // SCROLLSPY PLUGIN DEFINITION
  // ===========================
1651

1652
  var old = $.fn.scrollspy
1653

1654
1655
1656
1657
1658
  $.fn.scrollspy = function (option) {
    return this.each(function () {
      var $this   = $(this)
      var data    = $this.data('bs.scrollspy')
      var options = typeof option == 'object' && option
1659

1660
1661
1662
      if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
      if (typeof option == 'string') data[option]()
    })
1663
1664
  }

1665
  $.fn.scrollspy.Constructor = ScrollSpy
1666
1667


1668
1669
1670
1671
1672
1673
  // SCROLLSPY NO CONFLICT
  // =====================

  $.fn.scrollspy.noConflict = function () {
    $.fn.scrollspy = old
    return this
1674
1675
1676
  }


1677
1678
  // SCROLLSPY DATA-API
  // ==================
1679

1680
1681
1682
1683
1684
1685
  $(window).on('load', function () {
    $('[data-spy="scroll"]').each(function () {
      var $spy = $(this)
      $spy.scrollspy($spy.data())
    })
  })
1686

Chris Rebert's avatar
Chris Rebert committed
1687
}(jQuery);
1688

1689
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
1690
 * Bootstrap: tab.js v3.1.1
Mark Otto's avatar
Mark Otto committed
1691
 * http://getbootstrap.com/javascript/#tabs
1692
 * ========================================================================
1693
 * Copyright 2011-2014 Twitter, Inc.
1694
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1695
 * ======================================================================== */
1696

1697

1698
1699
+function ($) {
  'use strict';
1700
1701
1702
1703
1704
1705

  // TAB CLASS DEFINITION
  // ====================

  var Tab = function (element) {
    this.element = $(element)
1706
  }
1707

1708
1709
1710
  Tab.prototype.show = function () {
    var $this    = this.element
    var $ul      = $this.closest('ul:not(.dropdown-menu)')
Chris Rebert's avatar
Chris Rebert committed
1711
    var selector = $this.data('target')
1712
1713
1714
1715

    if (!selector) {
      selector = $this.attr('href')
      selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
1716
    }
1717

1718
    if ($this.parent('li').hasClass('active')) return
1719

1720
1721
1722
1723
    var previous = $ul.find('.active:last a')[0]
    var e        = $.Event('show.bs.tab', {
      relatedTarget: previous
    })
1724

1725
    $this.trigger(e)
1726

1727
    if (e.isDefaultPrevented()) return
1728

1729
    var $target = $(selector)
1730

1731
1732
1733
    this.activate($this.parent('li'), $ul)
    this.activate($target, $target.parent(), function () {
      $this.trigger({
Mark Otto's avatar
Mark Otto committed
1734
1735
        type: 'shown.bs.tab',
        relatedTarget: previous
1736
1737
      })
    })
1738
  }
1739

1740
1741
1742
1743
1744
  Tab.prototype.activate = function (element, container, callback) {
    var $active    = container.find('> .active')
    var transition = callback
      && $.support.transition
      && $active.hasClass('fade')
1745

1746
1747
1748
1749
1750
    function next() {
      $active
        .removeClass('active')
        .find('> .dropdown-menu > .active')
        .removeClass('active')
1751

1752
      element.addClass('active')
1753

1754
1755
1756
1757
1758
1759
      if (transition) {
        element[0].offsetWidth // reflow for transition
        element.addClass('in')
      } else {
        element.removeClass('fade')
      }
1760

1761
1762
1763
      if (element.parent('.dropdown-menu')) {
        element.closest('li.dropdown').addClass('active')
      }
fat's avatar
fat committed
1764

1765
1766
      callback && callback()
    }
fat's avatar
fat committed
1767

1768
1769
1770
1771
1772
1773
1774
    transition ?
      $active
        .one($.support.transition.end, next)
        .emulateTransitionEnd(150) :
      next()

    $active.removeClass('in')
1775
1776
1777
  }


1778
1779
  // TAB PLUGIN DEFINITION
  // =====================
1780

1781
  var old = $.fn.tab
1782

1783
  $.fn.tab = function ( option ) {
1784
    return this.each(function () {
1785
1786
      var $this = $(this)
      var data  = $this.data('bs.tab')
fat's avatar
fat committed
1787

1788
      if (!data) $this.data('bs.tab', (data = new Tab(this)))
1789
1790
1791
1792
      if (typeof option == 'string') data[option]()
    })
  }

1793
  $.fn.tab.Constructor = Tab
1794
1795


1796
1797
  // TAB NO CONFLICT
  // ===============
1798

1799
1800
  $.fn.tab.noConflict = function () {
    $.fn.tab = old
1801
1802
1803
    return this
  }

1804
1805
1806
1807
1808
1809
1810
1811
1812

  // TAB DATA-API
  // ============

  $(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
    e.preventDefault()
    $(this).tab('show')
  })

Chris Rebert's avatar
Chris Rebert committed
1813
}(jQuery);
1814

1815
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
1816
 * Bootstrap: affix.js v3.1.1
Mark Otto's avatar
Mark Otto committed
1817
 * http://getbootstrap.com/javascript/#affix
1818
 * ========================================================================
1819
 * Copyright 2011-2014 Twitter, Inc.
1820
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
1821
 * ======================================================================== */
Mark Otto's avatar
Mark Otto committed
1822
1823


1824
1825
+function ($) {
  'use strict';
Mark Otto's avatar
Mark Otto committed
1826

1827
1828
  // AFFIX CLASS DEFINITION
  // ======================
Mark Otto's avatar
Mark Otto committed
1829

1830
1831
1832
1833
1834
  var Affix = function (element, options) {
    this.options = $.extend({}, Affix.DEFAULTS, options)
    this.$window = $(window)
      .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
      .on('click.bs.affix.data-api',  $.proxy(this.checkPositionWithEventLoop, this))
fat's avatar
fat committed
1835

fat's avatar
fat committed
1836
1837
1838
1839
    this.$element     = $(element)
    this.affixed      =
    this.unpin        =
    this.pinnedOffset = null
fat's avatar
fat committed
1840

1841
1842
1843
1844
1845
1846
1847
1848
1849
    this.checkPosition()
  }

  Affix.RESET = 'affix affix-top affix-bottom'

  Affix.DEFAULTS = {
    offset: 0
  }

fat's avatar
fat committed
1850
1851
1852
1853
1854
1855
1856
1857
  Affix.prototype.getPinnedOffset = function () {
    if (this.pinnedOffset) return this.pinnedOffset
    this.$element.removeClass(Affix.RESET).addClass('affix')
    var scrollTop = this.$window.scrollTop()
    var position  = this.$element.offset()
    return (this.pinnedOffset = position.top - scrollTop)
  }

1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
  Affix.prototype.checkPositionWithEventLoop = function () {
    setTimeout($.proxy(this.checkPosition, this), 1)
  }

  Affix.prototype.checkPosition = function () {
    if (!this.$element.is(':visible')) return

    var scrollHeight = $(document).height()
    var scrollTop    = this.$window.scrollTop()
    var position     = this.$element.offset()
    var offset       = this.options.offset
    var offsetTop    = offset.top
    var offsetBottom = offset.bottom

fat's avatar
fat committed
1872
1873
    if (this.affixed == 'top') position.top += scrollTop

1874
    if (typeof offset != 'object')         offsetBottom = offsetTop = offset
1875
1876
    if (typeof offsetTop == 'function')    offsetTop    = offset.top(this.$element)
    if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
1877
1878
1879
1880
1881
1882
1883
1884

    var affix = this.unpin   != null && (scrollTop + this.unpin <= position.top) ? false :
                offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' :
                offsetTop    != null && (scrollTop <= offsetTop) ? 'top' : false

    if (this.affixed === affix) return
    if (this.unpin) this.$element.css('top', '')

1885
1886
1887
1888
1889
1890
1891
    var affixType = 'affix' + (affix ? '-' + affix : '')
    var e         = $.Event(affixType + '.bs.affix')

    this.$element.trigger(e)

    if (e.isDefaultPrevented()) return

1892
    this.affixed = affix
fat's avatar
fat committed
1893
    this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
1894

1895
1896
1897
1898
    this.$element
      .removeClass(Affix.RESET)
      .addClass(affixType)
      .trigger($.Event(affixType.replace('affix', 'affixed')))
1899
1900

    if (affix == 'bottom') {
fat's avatar
fat committed
1901
      this.$element.offset({ top: scrollHeight - offsetBottom - this.$element.height() })
1902
    }
Mark Otto's avatar
Mark Otto committed
1903
1904
  }

1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919

  // AFFIX PLUGIN DEFINITION
  // =======================

  var old = $.fn.affix

  $.fn.affix = function (option) {
    return this.each(function () {
      var $this   = $(this)
      var data    = $this.data('bs.affix')
      var options = typeof option == 'object' && option

      if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
      if (typeof option == 'string') data[option]()
    })
1920
1921
  }

1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
  $.fn.affix.Constructor = Affix


  // AFFIX NO CONFLICT
  // =================

  $.fn.affix.noConflict = function () {
    $.fn.affix = old
    return this
  }


  // AFFIX DATA-API
  // ==============

  $(window).on('load', function () {
    $('[data-spy="affix"]').each(function () {
      var $spy = $(this)
      var data = $spy.data()

      data.offset = data.offset || {}

      if (data.offsetBottom) data.offset.bottom = data.offsetBottom
      if (data.offsetTop)    data.offset.top    = data.offsetTop

      $spy.affix(data)
    })
Mark Otto's avatar
Mark Otto committed
1949
1950
  })

Chris Rebert's avatar
Chris Rebert committed
1951
}(jQuery);