bootstrap.js 57.1 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 = {
XhmikosR's avatar
XhmikosR 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

Chris Rebert's avatar
Chris Rebert 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
  Carousel.prototype.getActiveIndex = function () {
    this.$active = this.$element.find('.item.active')
Mark Otto's avatar
grunt    
Mark Otto committed
305
    this.$items  = this.$active.parent().children('.item')
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

XhmikosR's avatar
XhmikosR committed
316
    if (this.sliding)       return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid". not a typo. past tense of "to slide".
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')
XhmikosR's avatar
XhmikosR committed
370
      this.$element.one('slid.bs.carousel', function () { // yes, "slid". not a typo. past tense of "to slide".
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
XhmikosR's avatar
XhmikosR committed
386
          setTimeout(function () { that.$element.trigger('slid.bs.carousel') }, 0) // yes, "slid". not a typo. past tense of "to slide".
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
XhmikosR's avatar
XhmikosR committed
393
      this.$element.trigger('slid.bs.carousel') // yes, "slid". not a typo. past tense of "to slide".
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
    var dimension = this.dimension()

    this.$element
      .removeClass('collapse')
XhmikosR's avatar
XhmikosR committed
514
      .addClass('collapsing')[dimension](0)
515
516
517

    this.transitioning = 1

fat's avatar
fat committed
518
    var complete = function (e) {
Mark Otto's avatar
Mark Otto committed
519
520
521
522
523
      if (e && e.target != this.$element[0]) {
        this.$element
          .one($.support.transition.end, $.proxy(complete, this))
        return
      }
524
525
      this.$element
        .removeClass('collapsing')
Chris Rebert's avatar
Chris Rebert committed
526
        .addClass('collapse in')[dimension]('')
527
528
529
530
531
532
533
      this.transitioning = 0
      this.$element.trigger('shown.bs.collapse')
    }

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

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

535
536
    this.$element
      .one($.support.transition.end, $.proxy(complete, this))
XhmikosR's avatar
XhmikosR committed
537
      .emulateTransitionEnd(350)[dimension](this.$element[0][scrollSize])
538
  }
539

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

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

547
    var dimension = this.dimension()
548

XhmikosR's avatar
XhmikosR committed
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

fat's avatar
fat committed
558
    var complete = function (e) {
Mark Otto's avatar
Mark Otto committed
559
560
561
562
563
      if (e && e.target != this.$element[0]) {
        this.$element
          .one($.support.transition.end, $.proxy(complete, this))
        return
      }
564
565
566
567
568
      this.transitioning = 0
      this.$element
        .trigger('hidden.bs.collapse')
        .removeClass('collapsing')
        .addClass('collapse')
569
570
    }

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

573
574
575
576
    this.$element
      [dimension](0)
      .one($.support.transition.end, $.proxy(complete, this))
      .emulateTransitionEnd(350)
577
  }
578

579
580
  Collapse.prototype.toggle = function () {
    this[this.$element.hasClass('in') ? 'hide' : 'show']()
581
582
583
  }


584
585
  // COLLAPSE PLUGIN DEFINITION
  // ==========================
586
587

  var old = $.fn.collapse
588
589
590

  $.fn.collapse = function (option) {
    return this.each(function () {
591
      var $this   = $(this)
fat's avatar
fat committed
592
      var data    = $this.data('bs.collapse')
593
594
      var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)

595
      if (!data && options.toggle && option == 'show') option = !option
fat's avatar
fat committed
596
      if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
597
598
599
600
601
602
603
      if (typeof option == 'string') data[option]()
    })
  }

  $.fn.collapse.Constructor = Collapse


604
605
  // COLLAPSE NO CONFLICT
  // ====================
606

607
608
609
610
611
612
  $.fn.collapse.noConflict = function () {
    $.fn.collapse = old
    return this
  }


613
614
  // COLLAPSE DATA-API
  // =================
615

Mark Otto's avatar
grunt    
Mark Otto committed
616
  $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) {
617
618
    var $this   = $(this), href
    var target  = $this.attr('data-target')
619
620
        || e.preventDefault()
        || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
621
622
623
624
    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
625
    var $parent = parent && $(parent)
626

fat's avatar
fat committed
627
    if (!data || !data.transitioning) {
Mark Otto's avatar
grunt    
Mark Otto committed
628
      if ($parent) $parent.find('[data-toggle="collapse"][data-parent="' + parent + '"]').not($this).addClass('collapsed')
629
      $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
fat's avatar
fat committed
630
631
    }

632
    $target.collapse(option)
633
634
  })

Chris Rebert's avatar
Chris Rebert committed
635
}(jQuery);
636

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


646
647
+function ($) {
  'use strict';
648

649
650
  // DROPDOWN CLASS DEFINITION
  // =========================
651

652
  var backdrop = '.dropdown-backdrop'
Mark Otto's avatar
grunt    
Mark Otto committed
653
  var toggle   = '[data-toggle="dropdown"]'
654
  var Dropdown = function (element) {
655
    $(element).on('click.bs.dropdown', this.toggle)
656
  }
657

658
659
  Dropdown.prototype.toggle = function (e) {
    var $this = $(this)
660

661
    if ($this.is('.disabled, :disabled')) return
662

663
664
    var $parent  = getParent($this)
    var isActive = $parent.hasClass('open')
665

666
    clearMenus()
fat's avatar
fat committed
667

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

674
675
      var relatedTarget = { relatedTarget: this }
      $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
676
677
678

      if (e.isDefaultPrevented()) return

Mark Otto's avatar
Mark Otto committed
679
680
      $this.trigger('focus')

681
682
      $parent
        .toggleClass('open')
683
        .trigger('shown.bs.dropdown', relatedTarget)
fat's avatar
rebuild    
fat committed
684
    }
685

686
687
    return false
  }
688

689
690
  Dropdown.prototype.keydown = function (e) {
    if (!/(38|40|27)/.test(e.keyCode)) return
691

692
    var $this = $(this)
693

694
695
    e.preventDefault()
    e.stopPropagation()
696

697
    if ($this.is('.disabled, :disabled')) return
698

699
700
    var $parent  = getParent($this)
    var isActive = $parent.hasClass('open')
701

702
    if (!isActive || (isActive && e.keyCode == 27)) {
703
704
      if (e.which == 27) $parent.find(toggle).trigger('focus')
      return $this.trigger('click')
705
    }
706

fat's avatar
fat committed
707
    var desc = ' li:not(.divider):visible a'
Mark Otto's avatar
grunt    
Mark Otto committed
708
    var $items = $parent.find('[role="menu"]' + desc + ', [role="listbox"]' + desc)
709

710
    if (!$items.length) return
711

712
    var index = $items.index($items.filter(':focus'))
713

714
715
    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
716
    if (!~index)                                      index = 0
717

718
    $items.eq(index).trigger('focus')
719
720
  }

721
  function clearMenus(e) {
Chris Rebert's avatar
Chris Rebert committed
722
    if (e && e.which === 3) return
723
    $(backdrop).remove()
724
    $(toggle).each(function () {
725
      var $parent = getParent($(this))
726
      var relatedTarget = { relatedTarget: this }
727
      if (!$parent.hasClass('open')) return
728
      $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
729
      if (e.isDefaultPrevented()) return
730
      $parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
731
    })
732
733
734
735
736
737
738
  }

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

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

742
    var $parent = selector && $(selector)
743

744
    return $parent && $parent.length ? $parent : $this.parent()
745
746
747
  }


748
749
  // DROPDOWN PLUGIN DEFINITION
  // ==========================
750

751
752
  var old = $.fn.dropdown

753
754
755
  $.fn.dropdown = function (option) {
    return this.each(function () {
      var $this = $(this)
756
      var data  = $this.data('bs.dropdown')
757

758
      if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
759
760
761
762
763
764
765
      if (typeof option == 'string') data[option].call($this)
    })
  }

  $.fn.dropdown.Constructor = Dropdown


766
767
  // DROPDOWN NO CONFLICT
  // ====================
768
769
770
771
772
773
774

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


775
776
777
  // APPLY TO STANDARD DROPDOWN ELEMENTS
  // ===================================

778
  $(document)
779
780
    .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
781
    .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
Mark Otto's avatar
grunt    
Mark Otto committed
782
    .on('keydown.bs.dropdown.data-api', toggle + ', [role="menu"], [role="listbox"]', Dropdown.prototype.keydown)
783

Chris Rebert's avatar
Chris Rebert committed
784
}(jQuery);
785

786
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
787
 * Bootstrap: modal.js v3.1.1
Mark Otto's avatar
Mark Otto committed
788
 * http://getbootstrap.com/javascript/#modals
789
 * ========================================================================
790
 * Copyright 2011-2014 Twitter, Inc.
791
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
792
 * ======================================================================== */
793
794


795
796
+function ($) {
  'use strict';
797

fat's avatar
fat committed
798
799
  // MODAL CLASS DEFINITION
  // ======================
800

Jacob Thornton's avatar
Jacob Thornton committed
801
  var Modal = function (element, options) {
802
803
804
805
806
807
    this.options        = options
    this.$body          = $(document.body)
    this.$element       = $(element)
    this.$backdrop      =
    this.isShown        = null
    this.scrollbarWidth = 0
808

809
810
811
812
813
814
815
    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
816
  }
817

fat's avatar
fat committed
818
  Modal.DEFAULTS = {
Mark Otto's avatar
Mark Otto committed
819
820
821
    backdrop: true,
    keyboard: true,
    show: true
fat's avatar
fat committed
822
  }
823

Jacob Thornton's avatar
Jacob Thornton committed
824
  Modal.prototype.toggle = function (_relatedTarget) {
825
    return this.isShown ? this.hide() : this.show(_relatedTarget)
fat's avatar
fat committed
826
  }
827

Jacob Thornton's avatar
Jacob Thornton committed
828
  Modal.prototype.show = function (_relatedTarget) {
fat's avatar
fat committed
829
    var that = this
Jacob Thornton's avatar
Jacob Thornton committed
830
    var e    = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
831

fat's avatar
fat committed
832
    this.$element.trigger(e)
833

fat's avatar
fat committed
834
    if (this.isShown || e.isDefaultPrevented()) return
835

fat's avatar
fat committed
836
    this.isShown = true
837

838
    this.checkScrollbar()
fat's avatar
build    
fat committed
839
840
841
    this.$body.addClass('modal-open')

    this.setScrollbar()
fat's avatar
fat committed
842
    this.escape()
843

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

fat's avatar
fat committed
846
847
    this.backdrop(function () {
      var transition = $.support.transition && that.$element.hasClass('fade')
848

fat's avatar
fat committed
849
      if (!that.$element.parent().length) {
fat's avatar
build    
fat committed
850
        that.$element.appendTo(that.$body) // don't move modals dom position
fat's avatar
fat committed
851
      }
852

853
854
855
      that.$element
        .show()
        .scrollTop(0)
856

fat's avatar
fat committed
857
858
859
      if (transition) {
        that.$element[0].offsetWidth // force reflow
      }
860

fat's avatar
fat committed
861
862
863
      that.$element
        .addClass('in')
        .attr('aria-hidden', false)
864

fat's avatar
fat committed
865
      that.enforceFocus()
866

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

fat's avatar
fat committed
869
      transition ?
fat's avatar
fat committed
870
        that.$element.find('.modal-dialog') // wait for modal to slide in
871
          .one($.support.transition.end, function () {
872
            that.$element.trigger('focus').trigger(e)
873
874
          })
          .emulateTransitionEnd(300) :
875
        that.$element.trigger('focus').trigger(e)
fat's avatar
fat committed
876
877
    })
  }
878

fat's avatar
fat committed
879
  Modal.prototype.hide = function (e) {
fat's avatar
fat committed
880
    if (e) e.preventDefault()
881

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

fat's avatar
fat committed
884
    this.$element.trigger(e)
885

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

fat's avatar
fat committed
888
    this.isShown = false
889

fat's avatar
build    
fat committed
890
891
892
    this.$body.removeClass('modal-open')

    this.resetScrollbar()
fat's avatar
fat committed
893
    this.escape()
894

Mark Otto's avatar
Mark Otto committed
895
    $(document).off('focusin.bs.modal')
896

fat's avatar
fat committed
897
898
899
    this.$element
      .removeClass('in')
      .attr('aria-hidden', true)
900
      .off('click.dismiss.bs.modal')
901

fat's avatar
fat committed
902
    $.support.transition && this.$element.hasClass('fade') ?
903
904
905
      this.$element
        .one($.support.transition.end, $.proxy(this.hideModal, this))
        .emulateTransitionEnd(300) :
fat's avatar
fat committed
906
907
      this.hideModal()
  }
908

fat's avatar
fat committed
909
  Modal.prototype.enforceFocus = function () {
Jacob Thornton's avatar
Jacob Thornton committed
910
911
    $(document)
      .off('focusin.bs.modal') // guard against infinite focus loop
fat's avatar
fat committed
912
913
      .on('focusin.bs.modal', $.proxy(function (e) {
        if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
914
          this.$element.trigger('focus')
fat's avatar
fat committed
915
916
        }
      }, this))
fat's avatar
fat committed
917
  }
918

fat's avatar
fat committed
919
920
  Modal.prototype.escape = function () {
    if (this.isShown && this.options.keyboard) {
fat's avatar
fat committed
921
      this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {
fat's avatar
fat committed
922
        e.which == 27 && this.hide()
fat's avatar
fat committed
923
      }, this))
fat's avatar
fat committed
924
    } else if (!this.isShown) {
Mark Otto's avatar
Mark Otto committed
925
      this.$element.off('keyup.dismiss.bs.modal')
fat's avatar
fat committed
926
927
    }
  }
928

fat's avatar
fat committed
929
930
931
932
  Modal.prototype.hideModal = function () {
    var that = this
    this.$element.hide()
    this.backdrop(function () {
Mark Otto's avatar
Mark Otto committed
933
      that.$element.trigger('hidden.bs.modal')
fat's avatar
fat committed
934
935
    })
  }
936

fat's avatar
fat committed
937
938
939
940
  Modal.prototype.removeBackdrop = function () {
    this.$backdrop && this.$backdrop.remove()
    this.$backdrop = null
  }
941

fat's avatar
fat committed
942
  Modal.prototype.backdrop = function (callback) {
Chris Rebert's avatar
Chris Rebert committed
943
    var that = this
fat's avatar
fat committed
944
    var animate = this.$element.hasClass('fade') ? 'fade' : ''
945

fat's avatar
fat committed
946
947
    if (this.isShown && this.options.backdrop) {
      var doAnimate = $.support.transition && animate
948

fat's avatar
fat committed
949
      this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
fat's avatar
build    
fat committed
950
        .appendTo(this.$body)
951

952
      this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
fat's avatar
fat committed
953
954
955
956
957
        if (e.target !== e.currentTarget) return
        this.options.backdrop == 'static'
          ? this.$element[0].focus.call(this.$element[0])
          : this.hide.call(this)
      }, this))
958

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

fat's avatar
fat committed
961
      this.$backdrop.addClass('in')
962

fat's avatar
fat committed
963
      if (!callback) return
964

fat's avatar
fat committed
965
      doAnimate ?
966
967
968
        this.$backdrop
          .one($.support.transition.end, callback)
          .emulateTransitionEnd(150) :
fat's avatar
fat committed
969
        callback()
970

fat's avatar
fat committed
971
972
    } else if (!this.isShown && this.$backdrop) {
      this.$backdrop.removeClass('in')
973

Chris Rebert's avatar
Chris Rebert committed
974
975
976
977
      var callbackRemove = function() {
        that.removeBackdrop()
        callback && callback()
      }
Mark Otto's avatar
Mark Otto committed
978
      $.support.transition && this.$element.hasClass('fade') ?
979
        this.$backdrop
Chris Rebert's avatar
Chris Rebert committed
980
          .one($.support.transition.end, callbackRemove)
981
          .emulateTransitionEnd(150) :
Chris Rebert's avatar
Chris Rebert committed
982
        callbackRemove()
983

fat's avatar
fat committed
984
985
986
    } else if (callback) {
      callback()
    }
987
988
  }

989
990
991
992
993
  Modal.prototype.checkScrollbar = function () {
    if (document.body.clientWidth >= window.innerWidth) return
    this.scrollbarWidth = this.scrollbarWidth || this.measureScrollbar()
  }

fat's avatar
build    
fat committed
994
  Modal.prototype.setScrollbar =  function () {
995
996
    var bodyPad = parseInt(this.$body.css('padding-right') || 0)
    if (this.scrollbarWidth) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
fat's avatar
build    
fat committed
997
998
999
1000
  }

  Modal.prototype.resetScrollbar = function () {
    this.$body.css('padding-right', '')
For faster browsing, not all history is shown. View entire blame