bootstrap.js 55.6 KB
Newer Older
1
2
3
4
5
/**
* bootstrap.js v3.0.0 by @fat and @mdo
* Copyright 2013 Twitter Inc.
* http://www.apache.org/licenses/LICENSE-2.0
*/
6
7
if (!jQuery) { throw new Error("Bootstrap requires jQuery") }

8
/* ========================================================================
9
10
 * Bootstrap: transition.js v3.0.0
 * http://twbs.github.com/bootstrap/javascript.html#transitions
11
 * ========================================================================
12
 * Copyright 2013 Twitter, Inc.
13
14
15
16
17
18
19
20
21
22
23
24
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
25
 * ======================================================================== */
26
27


28
+function ($) { "use strict";
29

30
31
  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
  // ============================================================
32

33
34
  function transitionEnd() {
    var el = document.createElement('bootstrap')
35

36
37
38
39
40
    var transEndEventNames = {
      'WebkitTransition' : 'webkitTransitionEnd'
    , 'MozTransition'    : 'transitionend'
    , 'OTransition'      : 'oTransitionEnd otransitionend'
    , 'transition'       : 'transitionend'
fat's avatar
fat committed
41
    }
42

43
44
45
46
47
    for (var name in transEndEventNames) {
      if (el.style[name] !== undefined) {
        return { end: transEndEventNames[name] }
      }
    }
48
49
  }

50
51
52
53
54
55
  // http://blog.alexmaccaw.com/css-transitions
  $.fn.emulateTransitionEnd = function (duration) {
    var called = false, $el    = this
    $(this).one('webkitTransitionEnd', function () { called = true })
    var callback = function () { if (!called) $($el).trigger('webkitTransitionEnd') }
    setTimeout(callback, duration)
56
57
  }

58
59
  $(function () {
    $.support.transition = transitionEnd()
fat's avatar
fat committed
60
  })
61

Mark Otto's avatar
Mark Otto committed
62
}(window.jQuery);
63

64
/* ========================================================================
fat's avatar
fat committed
65
 * Bootstrap: alert.js v3.0.0
Chris Rebert's avatar
Chris Rebert committed
66
 * http://twbs.github.com/bootstrap/javascript.html#alerts
67
 * ========================================================================
fat's avatar
fat committed
68
 * Copyright 2013 Twitter, Inc.
69
70
71
72
73
74
75
76
77
78
79
80
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
81
 * ======================================================================== */
82
83


84
+function ($) { "use strict";
85

fat's avatar
fat committed
86
87
  // ALERT CLASS DEFINITION
  // ======================
88
89

  var dismiss = '[data-dismiss="alert"]'
fat's avatar
fat committed
90
91
92
  var Alert   = function (el) {
    $(el).on('click', dismiss, this.close)
  }
93
94

  Alert.prototype.close = function (e) {
fat's avatar
fat committed
95
96
    var $this    = $(this)
    var selector = $this.attr('data-target')
97
98
99

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

fat's avatar
fat committed
103
    var $parent = $(selector)
104

fat's avatar
fat committed
105
    if (e) e.preventDefault()
106

fat's avatar
fat committed
107
108
109
    if (!$parent.length) {
      $parent = $this.hasClass('alert') ? $this : $this.parent()
    }
110

Mark Otto's avatar
Mark Otto committed
111
    $parent.trigger(e = $.Event('close.bs.alert'))
112
113
114
115
116
117

    if (e.isDefaultPrevented()) return

    $parent.removeClass('in')

    function removeElement() {
Mark Otto's avatar
Mark Otto committed
118
      $parent.trigger('closed.bs.alert').remove()
119
120
121
    }

    $.support.transition && $parent.hasClass('fade') ?
122
123
124
      $parent
        .one($.support.transition.end, removeElement)
        .emulateTransitionEnd(150) :
125
126
127
128
      removeElement()
  }


fat's avatar
fat committed
129
130
  // ALERT PLUGIN DEFINITION
  // =======================
131

132
133
  var old = $.fn.alert

134
135
136
  $.fn.alert = function (option) {
    return this.each(function () {
      var $this = $(this)
Mark Otto's avatar
Mark Otto committed
137
      var data  = $this.data('bs.alert')
fat's avatar
fat committed
138

Mark Otto's avatar
Mark Otto committed
139
      if (!data) $this.data('bs.alert', (data = new Alert(this)))
140
141
142
143
144
145
146
      if (typeof option == 'string') data[option].call($this)
    })
  }

  $.fn.alert.Constructor = Alert


fat's avatar
fat committed
147
148
  // ALERT NO CONFLICT
  // =================
149
150
151
152
153
154
155

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


fat's avatar
fat committed
156
  // ALERT DATA-API
fat's avatar
fat committed
157
  // ==============
158

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

Mark Otto's avatar
Mark Otto committed
161
}(window.jQuery);
162

163
/* ========================================================================
fat's avatar
fat committed
164
 * Bootstrap: button.js v3.0.0
Chris Rebert's avatar
Chris Rebert committed
165
 * http://twbs.github.com/bootstrap/javascript.html#buttons
166
 * ========================================================================
fat's avatar
fat committed
167
 * Copyright 2013 Twitter, Inc.
168
169
170
171
172
173
174
175
176
177
178
179
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
180
 * ======================================================================== */
181
182


183
+function ($) { "use strict";
184

fat's avatar
fat committed
185
186
  // BUTTON PUBLIC CLASS DEFINITION
  // ==============================
187
188
189

  var Button = function (element, options) {
    this.$element = $(element)
fat's avatar
fat committed
190
191
192
193
194
    this.options  = $.extend({}, Button.DEFAULTS, options)
  }

  Button.DEFAULTS = {
    loadingText: 'loading...'
195
196
197
  }

  Button.prototype.setState = function (state) {
fat's avatar
fat committed
198
199
200
201
    var d    = 'disabled'
    var $el  = this.$element
    var val  = $el.is('input') ? 'val' : 'html'
    var data = $el.data()
202
203

    state = state + 'Text'
fat's avatar
fat committed
204
205

    if (!data.resetText) $el.data('resetText', $el[val]())
206
207
208
209
210
211
212

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

    // push to event loop to allow forms to submit
    setTimeout(function () {
      state == 'loadingText' ?
        $el.addClass(d).attr(d, d) :
fat's avatar
fat committed
213
        $el.removeClass(d).removeAttr(d);
214
215
216
217
    }, 0)
  }

  Button.prototype.toggle = function () {
218
    var $parent = this.$element.closest('[data-toggle="buttons"]')
219

220
221
222
    if ($parent.length) {
      var $input = this.$element.find('input').prop('checked', !this.$element.hasClass('active'))
      if ($input.prop('type') === 'radio') $parent.find('.active').removeClass('active')
fat's avatar
fat committed
223
    }
224
225
226
227
228

    this.$element.toggleClass('active')
  }


fat's avatar
fat committed
229
230
  // BUTTON PLUGIN DEFINITION
  // ========================
231

232
233
  var old = $.fn.button

234
235
  $.fn.button = function (option) {
    return this.each(function () {
fat's avatar
fat committed
236
237
238
239
      var $this   = $(this)
      var data    = $this.data('button')
      var options = typeof option == 'object' && option

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

242
243
244
245
246
247
248
249
      if (option == 'toggle') data.toggle()
      else if (option) data.setState(option)
    })
  }

  $.fn.button.Constructor = Button


fat's avatar
fat committed
250
251
  // BUTTON NO CONFLICT
  // ==================
252
253
254
255
256
257
258

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


fat's avatar
fat committed
259
260
  // BUTTON DATA-API
  // ===============
261

Mark Otto's avatar
Mark Otto committed
262
  $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) {
263
264
265
    var $btn = $(e.target)
    if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
    $btn.button('toggle')
266
    e.preventDefault()
267
268
  })

Mark Otto's avatar
Mark Otto committed
269
}(window.jQuery);
270

271
/* ========================================================================
fat's avatar
fat committed
272
 * Bootstrap: carousel.js v3.0.0
Chris Rebert's avatar
Chris Rebert committed
273
 * http://twbs.github.com/bootstrap/javascript.html#carousel
274
 * ========================================================================
275
276
277
278
279
280
281
282
283
284
285
286
287
 * Copyright 2012 Twitter, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
288
 * ======================================================================== */
289
290


291
+function ($) { "use strict";
292

fat's avatar
fat committed
293
294
  // CAROUSEL CLASS DEFINITION
  // =========================
295
296

  var Carousel = function (element, options) {
fat's avatar
fat committed
297
    this.$element    = $(element)
fat's avatar
fat committed
298
    this.$indicators = this.$element.find('.carousel-indicators')
fat's avatar
fat committed
299
300
301
302
303
304
305
    this.options     = options
    this.paused      =
    this.sliding     =
    this.interval    =
    this.$active     =
    this.$items      = null

306
307
308
309
310
    this.options.pause == 'hover' && this.$element
      .on('mouseenter', $.proxy(this.pause, this))
      .on('mouseleave', $.proxy(this.cycle, this))
  }

fat's avatar
fat committed
311
312
313
314
  Carousel.DEFAULTS = {
    interval: 5000
  , pause: 'hover'
  }
315

fat's avatar
fat committed
316
317
  Carousel.prototype.cycle =  function (e) {
    e || (this.paused = false)
318

fat's avatar
fat committed
319
    this.interval && clearInterval(this.interval)
fat's avatar
fat committed
320

fat's avatar
fat committed
321
322
323
    this.options.interval
      && !this.paused
      && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
324

fat's avatar
fat committed
325
326
    return this
  }
327

fat's avatar
fat committed
328
329
330
  Carousel.prototype.getActiveIndex = function () {
    this.$active = this.$element.find('.item.active')
    this.$items  = this.$active.parent().children()
331

fat's avatar
fat committed
332
333
    return this.$items.index(this.$active)
  }
334

fat's avatar
fat committed
335
336
337
  Carousel.prototype.to = function (pos) {
    var that        = this
    var activeIndex = this.getActiveIndex()
338

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

fat's avatar
fat committed
341
342
343
344
345
    if (this.sliding)       return this.$element.one('slid', function () { that.to(pos) })
    if (activeIndex == pos) return this.pause().cycle()

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

fat's avatar
fat committed
347
348
349
350
351
352
  Carousel.prototype.pause = function (e) {
    e || (this.paused = true)

    if (this.$element.find('.next, .prev').length && $.support.transition.end) {
      this.$element.trigger($.support.transition.end)
      this.cycle(true)
353
354
    }

fat's avatar
fat committed
355
    this.interval = clearInterval(this.interval)
356

fat's avatar
fat committed
357
358
    return this
  }
359

fat's avatar
fat committed
360
361
362
363
  Carousel.prototype.next = function () {
    if (this.sliding) return
    return this.slide('next')
  }
364

fat's avatar
fat committed
365
366
367
368
  Carousel.prototype.prev = function () {
    if (this.sliding) return
    return this.slide('prev')
  }
369

fat's avatar
fat committed
370
371
372
373
374
375
376
  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
377

fat's avatar
fat committed
378
    this.sliding = true
379

fat's avatar
fat committed
380
    isCycling && this.pause()
fat's avatar
fat committed
381

fat's avatar
fat committed
382
    $next = $next.length ? $next : this.$element.find('.item')[fallback]()
383

Mark Otto's avatar
Mark Otto committed
384
    var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction })
385

fat's avatar
fat committed
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
    if ($next.hasClass('active')) return

    if (this.$indicators.length) {
      this.$indicators.find('.active').removeClass('active')
      this.$element.one('slid', function () {
        var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
        $nextIndicator && $nextIndicator.addClass('active')
      })
    }

    if ($.support.transition && this.$element.hasClass('slide')) {
      this.$element.trigger(e)
      if (e.isDefaultPrevented()) return
      $next.addClass(type)
      $next[0].offsetWidth // force reflow
      $active.addClass(direction)
      $next.addClass(direction)
Jacob Thornton's avatar
Jacob Thornton committed
403
      $active
404
405
406
407
408
409
410
        .one($.support.transition.end, function () {
          $next.removeClass([type, direction].join(' ')).addClass('active')
          $active.removeClass(['active', direction].join(' '))
          that.sliding = false
          setTimeout(function () { that.$element.trigger('slid') }, 0)
        })
        .emulateTransitionEnd(600)
fat's avatar
fat committed
411
412
413
414
415
416
417
    } else {
      this.$element.trigger(e)
      if (e.isDefaultPrevented()) return
      $active.removeClass('active')
      $next.addClass('active')
      this.sliding = false
      this.$element.trigger('slid')
418
419
    }

fat's avatar
fat committed
420
421
422
    isCycling && this.cycle()

    return this
423
424
425
  }


fat's avatar
fat committed
426
427
  // CAROUSEL PLUGIN DEFINITION
  // ==========================
428

429
430
  var old = $.fn.carousel

431
432
  $.fn.carousel = function (option) {
    return this.each(function () {
fat's avatar
fat committed
433
      var $this   = $(this)
Mark Otto's avatar
Mark Otto committed
434
      var data    = $this.data('bs.carousel')
Jacob Thornton's avatar
Jacob Thornton committed
435
      var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
fat's avatar
fat committed
436
437
      var action  = typeof option == 'string' ? option : options.slide

Mark Otto's avatar
Mark Otto committed
438
      if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
439
      if (typeof option == 'number') data.to(option)
Jacob Thornton's avatar
Jacob Thornton committed
440
      else if (action) data[action]()
Mark Otto's avatar
Mark Otto committed
441
      else if (options.interval) data.pause().cycle()
442
443
444
445
446
447
    })
  }

  $.fn.carousel.Constructor = Carousel


fat's avatar
fat committed
448
449
  // CAROUSEL NO CONFLICT
  // ====================
450
451
452
453
454
455

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

fat's avatar
fat committed
456

fat's avatar
fat committed
457
458
  // CAROUSEL DATA-API
  // =================
459

460
  $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
fat's avatar
fat committed
461
    var $this   = $(this), href
fat's avatar
fat committed
462
463
    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
464
465
    var slideIndex = $this.attr('data-slide-to')
    if (slideIndex) options.interval = false
466

467
    $target.carousel(options)
468
469

    if (slideIndex = $this.attr('data-slide-to')) {
fat's avatar
fat committed
470
      $target.data('bs.carousel').to(slideIndex)
471
472
    }

473
    e.preventDefault()
474
475
  })

fat's avatar
fat committed
476
477
478
479
480
481
482
  $(window).on('load', function () {
    $('[data-ride="carousel"]').each(function () {
      var $carousel = $(this)
      $carousel.carousel($carousel.data())
    })
  })

Mark Otto's avatar
Mark Otto committed
483
}(window.jQuery);
484

485
/* ========================================================================
fat's avatar
fat committed
486
 * Bootstrap: collapse.js v3.0.0
Chris Rebert's avatar
Chris Rebert committed
487
 * http://twbs.github.com/bootstrap/javascript.html#collapse
488
 * ========================================================================
489
490
491
492
493
494
495
496
497
498
499
500
501
 * Copyright 2012 Twitter, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
502
 * ======================================================================== */
503
504


505
+function ($) { "use strict";
506

507
508
  // COLLAPSE PUBLIC CLASS DEFINITION
  // ================================
509
510

  var Collapse = function (element, options) {
511
512
513
    this.$element      = $(element)
    this.options       = $.extend({}, Collapse.DEFAULTS, options)
    this.transitioning = null
514

515
516
517
518
519
520
521
    if (this.options.parent) this.$parent = $(this.options.parent)
    if (this.options.toggle) this.toggle()
  }

  Collapse.DEFAULTS = {
    toggle: true
  }
522

523
524
525
  Collapse.prototype.dimension = function () {
    var hasWidth = this.$element.hasClass('width')
    return hasWidth ? 'width' : 'height'
526
527
  }

528
529
  Collapse.prototype.show = function () {
    if (this.transitioning || this.$element.hasClass('in')) return
530

fat's avatar
fat committed
531
532
533
534
    var startEvent = $.Event('show.bs.collapse')
    this.$element.trigger(startEvent)
    if (startEvent.isDefaultPrevented()) return

535
536
    var dimension = this.dimension()
    var scroll    = $.camelCase(['scroll', dimension].join('-'))
537
    var actives   = this.$parent && this.$parent.find('> .accordion-group > .in')
538

539
    if (actives && actives.length) {
fat's avatar
fat committed
540
      var hasData = actives.data('bs.collapse')
541
542
      if (hasData && hasData.transitioning) return
      actives.collapse('hide')
fat's avatar
fat committed
543
      hasData || actives.data('bs.collapse', null)
544
545
    }

546
    this.$element[dimension](0)
fat's avatar
fat committed
547
    this.transition('addClass', 'shown.bs.collapse')
548

549
550
    if ($.support.transition) this.$element[dimension](this.$element[0][scroll])
  }
551

552
553
  Collapse.prototype.hide = function () {
    if (this.transitioning || !this.$element.hasClass('in')) return
fat's avatar
fat committed
554
555
556
557
558

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

559
560
    var dimension = this.dimension()
    this.reset(this.$element[dimension]())
fat's avatar
fat committed
561
    this.transition('removeClass', 'hidden.bs.collapse')
562
563
    this.$element[dimension](0)
  }
564

565
566
  Collapse.prototype.reset = function (size) {
    var dimension = this.dimension()
567

568
569
570
571
    this.$element
      .removeClass('collapse')
      [dimension](size || 'auto')
      [0].offsetWidth
572

Mark Otto's avatar
Mark Otto committed
573
    this.$element[size != null ? 'addClass' : 'removeClass']('collapse')
574

575
576
    return this
  }
577

fat's avatar
fat committed
578
  Collapse.prototype.transition = function (method, completeEvent) {
579
580
    var that     = this
    var complete = function () {
fat's avatar
fat committed
581
      if (completeEvent == 'shown.bs.collapse') that.reset()
582
583
      that.transitioning = 0
      that.$element.trigger(completeEvent)
584
585
    }

586
    this.transitioning = 1
587

588
    this.$element[method]('in')
589

590
    $.support.transition && this.$element.hasClass('collapse') ?
591
592
593
      this.$element
        .one($.support.transition.end, complete)
        .emulateTransitionEnd(350) :
594
595
      complete()
  }
596

597
598
  Collapse.prototype.toggle = function () {
    this[this.$element.hasClass('in') ? 'hide' : 'show']()
599
600
601
  }


602
603
  // COLLAPSE PLUGIN DEFINITION
  // ==========================
604
605

  var old = $.fn.collapse
606
607
608

  $.fn.collapse = function (option) {
    return this.each(function () {
609
      var $this   = $(this)
fat's avatar
fat committed
610
      var data    = $this.data('bs.collapse')
611
612
      var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)

fat's avatar
fat committed
613
      if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
614
615
616
617
618
619
620
      if (typeof option == 'string') data[option]()
    })
  }

  $.fn.collapse.Constructor = Collapse


621
622
  // COLLAPSE NO CONFLICT
  // ====================
623

624
625
626
627
628
629
  $.fn.collapse.noConflict = function () {
    $.fn.collapse = old
    return this
  }


630
631
  // COLLAPSE DATA-API
  // =================
632

633
  $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) {
634
635
    var $this   = $(this), href
    var target  = $this.attr('data-target')
636
637
        || e.preventDefault()
        || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
638
639
640
641
    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
642
    var $parent = parent && $(parent)
643

fat's avatar
fat committed
644
    if (!data || !data.transitioning) {
fat's avatar
fat committed
645
      if ($parent) $parent.find('[data-toggle=collapse][data-parent=' + parent + ']').not($this).addClass('collapsed')
646
      $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
fat's avatar
fat committed
647
648
    }

649
    $target.collapse(option)
650
651
  })

Mark Otto's avatar
Mark Otto committed
652
}(window.jQuery);
653

654
/* ========================================================================
fat's avatar
fat committed
655
 * Bootstrap: dropdown.js v3.0.0
Chris Rebert's avatar
Chris Rebert committed
656
 * http://twbs.github.com/bootstrap/javascript.html#dropdowns
657
 * ========================================================================
658
659
660
661
662
663
664
665
666
667
668
669
670
 * Copyright 2012 Twitter, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
671
 * ======================================================================== */
672
673


674
+function ($) { "use strict";
675

676
677
  // DROPDOWN CLASS DEFINITION
  // =========================
678

679
680
681
  var backdrop = '.dropdown-backdrop'
  var toggle   = '[data-toggle=dropdown]'
  var Dropdown = function (element) {
682
    var $el = $(element).on('click.bs.dropdown', this.toggle)
683
  }
684

685
686
  Dropdown.prototype.toggle = function (e) {
    var $this = $(this)
687

688
    if ($this.is('.disabled, :disabled')) return
689

690
691
    var $parent  = getParent($this)
    var isActive = $parent.hasClass('open')
692

693
    clearMenus()
fat's avatar
fat committed
694

695
    if (!isActive) {
fat's avatar
fat committed
696
697
      if ('ontouchstart' in document.documentElement) {
        // if mobile we we use a backdrop because click events don't delegate
Jacob Thornton's avatar
Jacob Thornton committed
698
        $('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
fat's avatar
fat committed
699
      }
700
701
702
703
704
705
706
707

      $parent.trigger(e = $.Event('show.bs.dropdown'))

      if (e.isDefaultPrevented()) return

      $parent
        .toggleClass('open')
        .trigger('shown.bs.dropdown')
708
709
    }

710
    $this.focus()
711

712
713
    return false
  }
714

715
716
  Dropdown.prototype.keydown = function (e) {
    if (!/(38|40|27)/.test(e.keyCode)) return
717

718
    var $this = $(this)
719

720
721
    e.preventDefault()
    e.stopPropagation()
722

723
    if ($this.is('.disabled, :disabled')) return
724

725
726
    var $parent  = getParent($this)
    var isActive = $parent.hasClass('open')
727

728
729
730
731
    if (!isActive || (isActive && e.keyCode == 27)) {
      if (e.which == 27) $parent.find(toggle).focus()
      return $this.click()
    }
732

733
    var $items = $('[role=menu] li:not(.divider):visible a', $parent)
734

735
    if (!$items.length) return
736

737
    var index = $items.index($items.filter(':focus'))
738

739
740
741
    if (e.keyCode == 38 && index > 0)                 index--                        // up
    if (e.keyCode == 40 && index < $items.length - 1) index++                        // down
    if (!~index)                                      index=0
742

743
    $items.eq(index).focus()
744
745
  }

Mark Otto's avatar
Mark Otto committed
746
  function clearMenus() {
747
    $(backdrop).remove()
748
    $(toggle).each(function (e) {
749
750
751
752
753
754
      var $parent = getParent($(this))
      if (!$parent.hasClass('open')) return
      $parent.trigger(e = $.Event('hide.bs.dropdown'))
      if (e.isDefaultPrevented()) return
      $parent.removeClass('open').trigger('hidden.bs.dropdown')
    })
755
756
757
758
759
760
761
  }

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

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

765
    var $parent = selector && $(selector)
766

767
    return $parent && $parent.length ? $parent : $this.parent()
768
769
770
  }


771
772
  // DROPDOWN PLUGIN DEFINITION
  // ==========================
773

774
775
  var old = $.fn.dropdown

776
777
778
  $.fn.dropdown = function (option) {
    return this.each(function () {
      var $this = $(this)
779
780
      var data  = $this.data('dropdown')

781
782
783
784
785
786
787
788
      if (!data) $this.data('dropdown', (data = new Dropdown(this)))
      if (typeof option == 'string') data[option].call($this)
    })
  }

  $.fn.dropdown.Constructor = Dropdown


789
790
  // DROPDOWN NO CONFLICT
  // ====================
791
792
793
794
795
796
797

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


798
799
800
  // APPLY TO STANDARD DROPDOWN ELEMENTS
  // ===================================

801
  $(document)
802
803
804
805
    .on('click.bs.dropdown.data-api', clearMenus)
    .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
    .on('click.bs.dropdown.data-api'  , toggle, Dropdown.prototype.toggle)
    .on('keydown.bs.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
806

fat's avatar
fat committed
807
}(window.jQuery);
808

809
/* ========================================================================
fat's avatar
fat committed
810
 * Bootstrap: modal.js v3.0.0
Chris Rebert's avatar
Chris Rebert committed
811
 * http://twbs.github.com/bootstrap/javascript.html#modals
812
 * ========================================================================
813
814
815
816
817
818
819
820
821
822
823
824
825
 * Copyright 2012 Twitter, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
826
 * ======================================================================== */
827
828


829
+function ($) { "use strict";
830

fat's avatar
fat committed
831
832
  // MODAL CLASS DEFINITION
  // ======================
833

Jacob Thornton's avatar
Jacob Thornton committed
834
  var Modal = function (element, options) {
fat's avatar
fat committed
835
    this.options   = options
fat's avatar
fat committed
836
    this.$element  = $(element).on('click.dismiss.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
fat's avatar
fat committed
837
838
    this.$backdrop =
    this.isShown   = null
839

fat's avatar
fat committed
840
841
    if (this.options.remote) this.$element.find('.modal-body').load(this.options.remote)
  }
842

fat's avatar
fat committed
843
844
845
846
847
  Modal.DEFAULTS = {
      backdrop: true
    , keyboard: true
    , show: true
  }
848

fat's avatar
fat committed
849
850
851
  Modal.prototype.toggle = function () {
    return this[!this.isShown ? 'show' : 'hide']()
  }
852

fat's avatar
fat committed
853
854
  Modal.prototype.show = function () {
    var that = this
Mark Otto's avatar
Mark Otto committed
855
    var e    = $.Event('show.bs.modal')
856

fat's avatar
fat committed
857
    this.$element.trigger(e)
858

fat's avatar
fat committed
859
    if (this.isShown || e.isDefaultPrevented()) return
860

fat's avatar
fat committed
861
    this.isShown = true
862

fat's avatar
fat committed
863
    this.escape()
864

fat's avatar
fat committed
865
866
    this.backdrop(function () {
      var transition = $.support.transition && that.$element.hasClass('fade')
867

fat's avatar
fat committed
868
      if (!that.$element.parent().length) {
Jacob Thornton's avatar
Jacob Thornton committed
869
        that.$element.appendTo(document.body) // don't move modals dom position
fat's avatar
fat committed
870
      }
871

fat's avatar
fat committed
872
      that.$element.show()
873

fat's avatar
fat committed
874
875
876
      if (transition) {
        that.$element[0].offsetWidth // force reflow
      }
877

fat's avatar
fat committed
878
879
880
      that.$element
        .addClass('in')
        .attr('aria-hidden', false)
881

fat's avatar
fat committed
882
      that.enforceFocus()
883

fat's avatar
fat committed
884
      transition ?
885
886
887
888
889
        that.$element
          .one($.support.transition.end, function () {
            that.$element.focus().trigger('shown.bs.modal')
          })
          .emulateTransitionEnd(300) :
Mark Otto's avatar
Mark Otto committed
890
        that.$element.focus().trigger('shown.bs.modal')
fat's avatar
fat committed
891
892
    })
  }
893

fat's avatar
fat committed
894
  Modal.prototype.hide = function (e) {
fat's avatar
fat committed
895
    if (e) e.preventDefault()
896

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

fat's avatar
fat committed
899
    this.$element.trigger(e)
900

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

fat's avatar
fat committed
903
    this.isShown = false
904

fat's avatar
fat committed
905
    this.escape()
906

Mark Otto's avatar
Mark Otto committed
907
    $(document).off('focusin.bs.modal')
908

fat's avatar
fat committed
909
910
911
    this.$element
      .removeClass('in')
      .attr('aria-hidden', true)
912

fat's avatar
fat committed
913
    $.support.transition && this.$element.hasClass('fade') ?
914
915
916
      this.$element
        .one($.support.transition.end, $.proxy(this.hideModal, this))
        .emulateTransitionEnd(300) :
fat's avatar
fat committed
917
918
      this.hideModal()
  }
919

fat's avatar
fat committed
920
  Modal.prototype.enforceFocus = function () {
Jacob Thornton's avatar
Jacob Thornton committed
921
922
    $(document)
      .off('focusin.bs.modal') // guard against infinite focus loop
fat's avatar
fat committed
923
924
925
926
927
      .on('focusin.bs.modal', $.proxy(function (e) {
        if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
          this.$element.focus()
        }
      }, this))
fat's avatar
fat committed
928
  }
929

fat's avatar
fat committed
930
931
  Modal.prototype.escape = function () {
    if (this.isShown && this.options.keyboard) {
fat's avatar
fat committed
932
      this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {
fat's avatar
fat committed
933
        e.which == 27 && this.hide()
fat's avatar
fat committed
934
      }, this))
fat's avatar
fat committed
935
    } else if (!this.isShown) {
Mark Otto's avatar
Mark Otto committed
936
      this.$element.off('keyup.dismiss.bs.modal')
fat's avatar
fat committed
937
938
    }
  }
939

fat's avatar
fat committed
940
941
942
943
944
  Modal.prototype.hideModal = function () {
    var that = this
    this.$element.hide()
    this.backdrop(function () {
      that.removeBackdrop()
Mark Otto's avatar
Mark Otto committed
945
      that.$element.trigger('hidden.bs.modal')
fat's avatar
fat committed
946
947
    })
  }
948

fat's avatar
fat committed
949
950
951
952
  Modal.prototype.removeBackdrop = function () {
    this.$backdrop && this.$backdrop.remove()
    this.$backdrop = null
  }
953

fat's avatar
fat committed
954
955
956
  Modal.prototype.backdrop = function (callback) {
    var that    = this
    var animate = this.$element.hasClass('fade') ? 'fade' : ''
957

fat's avatar
fat committed
958
959
    if (this.isShown && this.options.backdrop) {
      var doAnimate = $.support.transition && animate
960

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

fat's avatar
fat committed
964
965
966
967
968
969
      this.$element.on('click', $.proxy(function (e) {
        if (e.target !== e.currentTarget) return
        this.options.backdrop == 'static'
          ? this.$element[0].focus.call(this.$element[0])
          : this.hide.call(this)
      }, this))
970

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

fat's avatar
fat committed
973
      this.$backdrop.addClass('in')
974

fat's avatar
fat committed
975
      if (!callback) return
976

fat's avatar
fat committed
977
      doAnimate ?
978
979
980
        this.$backdrop
          .one($.support.transition.end, callback)
          .emulateTransitionEnd(150) :
fat's avatar
fat committed
981
        callback()
982

fat's avatar
fat committed
983
984
    } else if (!this.isShown && this.$backdrop) {
      this.$backdrop.removeClass('in')
985

fat's avatar
fat committed
986
      $.support.transition && this.$element.hasClass('fade')?
987
988
989
        this.$backdrop
          .one($.support.transition.end, callback)
          .emulateTransitionEnd(150) :
fat's avatar
fat committed
990
        callback()
991

fat's avatar
fat committed
992
993
994
    } else if (callback) {
      callback()
    }
995
996
997
  }


fat's avatar
fat committed
998
999
  // MODAL PLUGIN DEFINITION
  // =======================
1000

For faster browsing, not all history is shown. View entire blame