bootstrap.js 61.2 KB
Newer Older
1
/*!
Mark Otto's avatar
Mark Otto committed
2
 * Bootstrap v3.2.0 (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.2.0
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


XhmikosR's avatar
XhmikosR committed
18
19
+function ($) {
  'use strict';
Mark Otto's avatar
grunt    
Mark Otto committed
20

XhmikosR's avatar
XhmikosR committed
21
22
  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
  // ============================================================
23

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

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

XhmikosR's avatar
XhmikosR committed
34
35
36
    for (var name in transEndEventNames) {
      if (el.style[name] !== undefined) {
        return { end: transEndEventNames[name] }
37
      }
Chris Rebert's avatar
Chris Rebert committed
38
39
    }

XhmikosR's avatar
XhmikosR committed
40
41
    return false // explicit for ie8 (  ._.)
  }
42

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

XhmikosR's avatar
XhmikosR committed
53
54
  $(function () {
    $.support.transition = transitionEnd()
Chris Rebert's avatar
Chris Rebert committed
55

XhmikosR's avatar
XhmikosR committed
56
    if (!$.support.transition) return
57

XhmikosR's avatar
XhmikosR committed
58
59
60
61
62
63
64
    $.event.special.bsTransitionEnd = {
      bindType: $.support.transition.end,
      delegateType: $.support.transition.end,
      handle: function (e) {
        if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
      }
    }
fat's avatar
fat committed
65
  })
66

XhmikosR's avatar
XhmikosR committed
67
}(jQuery);
68

69
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
70
 * Bootstrap: alert.js v3.2.0
Mark Otto's avatar
Mark Otto committed
71
 * http://getbootstrap.com/javascript/#alerts
72
 * ========================================================================
73
 * Copyright 2011-2014 Twitter, Inc.
74
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
75
 * ======================================================================== */
76
77


XhmikosR's avatar
XhmikosR committed
78
79
+function ($) {
  'use strict';
80

XhmikosR's avatar
XhmikosR committed
81
82
  // ALERT CLASS DEFINITION
  // ======================
83

XhmikosR's avatar
XhmikosR committed
84
85
86
87
  var dismiss = '[data-dismiss="alert"]'
  var Alert   = function (el) {
    $(el).on('click', dismiss, this.close)
  }
Mark Otto's avatar
grunt    
Mark Otto committed
88

Mark Otto's avatar
Mark Otto committed
89
  Alert.VERSION = '3.2.0'
90

91
92
  Alert.TRANSITION_DURATION = 150

XhmikosR's avatar
XhmikosR committed
93
94
95
  Alert.prototype.close = function (e) {
    var $this    = $(this)
    var selector = $this.attr('data-target')
96

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

XhmikosR's avatar
XhmikosR committed
102
    var $parent = $(selector)
103

XhmikosR's avatar
XhmikosR committed
104
    if (e) e.preventDefault()
105

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

XhmikosR's avatar
XhmikosR committed
110
    $parent.trigger(e = $.Event('close.bs.alert'))
Chris Rebert's avatar
Chris Rebert committed
111

XhmikosR's avatar
XhmikosR committed
112
    if (e.isDefaultPrevented()) return
113

XhmikosR's avatar
XhmikosR committed
114
    $parent.removeClass('in')
115

XhmikosR's avatar
XhmikosR committed
116
117
118
    function removeElement() {
      // detach from parent, fire event then clean up data
      $parent.detach().trigger('closed.bs.alert').remove()
119
120
    }

XhmikosR's avatar
XhmikosR committed
121
122
123
    $.support.transition && $parent.hasClass('fade') ?
      $parent
        .one('bsTransitionEnd', removeElement)
124
        .emulateTransitionEnd(Alert.TRANSITION_DURATION) :
XhmikosR's avatar
XhmikosR committed
125
126
      removeElement()
  }
127
128


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

XhmikosR's avatar
XhmikosR committed
132
133
134
135
  function Plugin(option) {
    return this.each(function () {
      var $this = $(this)
      var data  = $this.data('bs.alert')
fat's avatar
fat committed
136

XhmikosR's avatar
XhmikosR committed
137
138
139
140
      if (!data) $this.data('bs.alert', (data = new Alert(this)))
      if (typeof option == 'string') data[option].call($this)
    })
  }
141

XhmikosR's avatar
XhmikosR committed
142
  var old = $.fn.alert
Mark Otto's avatar
Mark Otto committed
143

XhmikosR's avatar
XhmikosR committed
144
145
  $.fn.alert             = Plugin
  $.fn.alert.Constructor = Alert
146
147


XhmikosR's avatar
XhmikosR committed
148
149
  // ALERT NO CONFLICT
  // =================
150

XhmikosR's avatar
XhmikosR committed
151
152
153
154
  $.fn.alert.noConflict = function () {
    $.fn.alert = old
    return this
  }
155
156


XhmikosR's avatar
XhmikosR committed
157
158
  // ALERT DATA-API
  // ==============
159

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

XhmikosR's avatar
XhmikosR committed
162
}(jQuery);
163

164
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
165
 * Bootstrap: button.js v3.2.0
Mark Otto's avatar
Mark Otto committed
166
 * http://getbootstrap.com/javascript/#buttons
167
 * ========================================================================
168
 * Copyright 2011-2014 Twitter, Inc.
169
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
170
 * ======================================================================== */
171
172


XhmikosR's avatar
XhmikosR committed
173
174
+function ($) {
  'use strict';
fat's avatar
fat committed
175

XhmikosR's avatar
XhmikosR committed
176
177
  // BUTTON PUBLIC CLASS DEFINITION
  // ==============================
Mark Otto's avatar
grunt    
Mark Otto committed
178

XhmikosR's avatar
XhmikosR committed
179
180
181
182
183
  var Button = function (element, options) {
    this.$element  = $(element)
    this.options   = $.extend({}, Button.DEFAULTS, options)
    this.isLoading = false
  }
184

Mark Otto's avatar
Mark Otto committed
185
  Button.VERSION  = '3.2.0'
186

XhmikosR's avatar
XhmikosR committed
187
188
189
  Button.DEFAULTS = {
    loadingText: 'loading...'
  }
fat's avatar
fat committed
190

XhmikosR's avatar
XhmikosR committed
191
192
193
194
195
  Button.prototype.setState = function (state) {
    var d    = 'disabled'
    var $el  = this.$element
    var val  = $el.is('input') ? 'val' : 'html'
    var data = $el.data()
196

XhmikosR's avatar
XhmikosR committed
197
    state = state + 'Text'
198

XhmikosR's avatar
XhmikosR committed
199
    if (data.resetText == null) $el.data('resetText', $el[val]())
Chris Rebert's avatar
Chris Rebert committed
200

XhmikosR's avatar
XhmikosR committed
201
    $el[val](data[state] == null ? this.options[state] : data[state])
Chris Rebert's avatar
Chris Rebert committed
202

XhmikosR's avatar
XhmikosR committed
203
204
205
206
207
208
209
210
    // push to event loop to allow forms to submit
    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)
211
      }
XhmikosR's avatar
XhmikosR committed
212
213
214
215
216
217
218
219
220
221
222
223
224
225
    }, this), 0)
  }

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

    if ($parent.length) {
      var $input = this.$element.find('input')
      if ($input.prop('type') == 'radio') {
        if ($input.prop('checked') && this.$element.hasClass('active')) changed = false
        else $parent.find('.active').removeClass('active')
      }
      if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
fat's avatar
fat committed
226
    }
227

XhmikosR's avatar
XhmikosR committed
228
229
    if (changed) this.$element.toggleClass('active')
  }
230
231


XhmikosR's avatar
XhmikosR committed
232
233
  // BUTTON PLUGIN DEFINITION
  // ========================
234

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

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

XhmikosR's avatar
XhmikosR committed
243
244
245
246
      if (option == 'toggle') data.toggle()
      else if (option) data.setState(option)
    })
  }
247

XhmikosR's avatar
XhmikosR committed
248
  var old = $.fn.button
Mark Otto's avatar
Mark Otto committed
249

XhmikosR's avatar
XhmikosR committed
250
251
  $.fn.button             = Plugin
  $.fn.button.Constructor = Button
252
253


XhmikosR's avatar
XhmikosR committed
254
255
  // BUTTON NO CONFLICT
  // ==================
256

XhmikosR's avatar
XhmikosR committed
257
258
259
260
  $.fn.button.noConflict = function () {
    $.fn.button = old
    return this
  }
261
262


XhmikosR's avatar
XhmikosR committed
263
264
  // BUTTON DATA-API
  // ===============
265

Mark Otto's avatar
grunt    
Mark Otto committed
266
267
268
269
270
271
272
  $(document)
    .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) {
      var $btn = $(e.target)
      if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
      Plugin.call($btn, 'toggle')
      e.preventDefault()
    })
Chris Rebert's avatar
Chris Rebert committed
273
274
    .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) {
      $(e.target).closest('.btn').toggleClass('focus', e.type == 'focus')
Mark Otto's avatar
grunt    
Mark Otto committed
275
    })
276

XhmikosR's avatar
XhmikosR committed
277
}(jQuery);
278

279
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
280
 * Bootstrap: carousel.js v3.2.0
Mark Otto's avatar
Mark Otto committed
281
 * http://getbootstrap.com/javascript/#carousel
282
 * ========================================================================
283
 * Copyright 2011-2014 Twitter, Inc.
284
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
285
 * ======================================================================== */
286
287


XhmikosR's avatar
XhmikosR committed
288
289
+function ($) {
  'use strict';
290

XhmikosR's avatar
XhmikosR committed
291
292
  // CAROUSEL CLASS DEFINITION
  // =========================
293

XhmikosR's avatar
XhmikosR committed
294
295
296
297
298
299
300
301
302
  var Carousel = function (element, options) {
    this.$element    = $(element).on('keydown.bs.carousel', $.proxy(this.keydown, this))
    this.$indicators = this.$element.find('.carousel-indicators')
    this.options     = options
    this.paused      =
    this.sliding     =
    this.interval    =
    this.$active     =
    this.$items      = null
fat's avatar
fat committed
303

XhmikosR's avatar
XhmikosR committed
304
305
306
307
    this.options.pause == 'hover' && this.$element
      .on('mouseenter.bs.carousel', $.proxy(this.pause, this))
      .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
  }
308

Mark Otto's avatar
Mark Otto committed
309
  Carousel.VERSION  = '3.2.0'
Mark Otto's avatar
grunt    
Mark Otto committed
310

311
312
  Carousel.TRANSITION_DURATION = 600

XhmikosR's avatar
XhmikosR committed
313
314
315
316
317
  Carousel.DEFAULTS = {
    interval: 5000,
    pause: 'hover',
    wrap: true
  }
318

XhmikosR's avatar
XhmikosR committed
319
320
321
322
323
  Carousel.prototype.keydown = function (e) {
    switch (e.which) {
      case 37: this.prev(); break
      case 39: this.next(); break
      default: return
Mark Otto's avatar
Mark Otto committed
324
325
    }

XhmikosR's avatar
XhmikosR committed
326
327
    e.preventDefault()
  }
328

XhmikosR's avatar
XhmikosR committed
329
330
  Carousel.prototype.cycle = function (e) {
    e || (this.paused = false)
fat's avatar
fat committed
331

XhmikosR's avatar
XhmikosR committed
332
    this.interval && clearInterval(this.interval)
333

XhmikosR's avatar
XhmikosR committed
334
335
336
    this.options.interval
      && !this.paused
      && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
337

XhmikosR's avatar
XhmikosR committed
338
339
    return this
  }
340

XhmikosR's avatar
XhmikosR committed
341
342
343
344
  Carousel.prototype.getItemIndex = function (item) {
    this.$items = item.parent().children('.item')
    return this.$items.index(item || this.$active)
  }
345

XhmikosR's avatar
XhmikosR committed
346
347
348
349
350
351
352
  Carousel.prototype.getItemForDirection = function (direction, active) {
    var delta = direction == 'prev' ? -1 : 1
    var activeIndex = this.getItemIndex(active)
    var itemIndex = (activeIndex + delta) % this.$items.length
    return this.$items.eq(itemIndex)
  }

XhmikosR's avatar
XhmikosR committed
353
354
355
  Carousel.prototype.to = function (pos) {
    var that        = this
    var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))
356

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

XhmikosR's avatar
XhmikosR committed
359
360
    if (this.sliding)       return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid"
    if (activeIndex == pos) return this.pause().cycle()
361

XhmikosR's avatar
XhmikosR committed
362
    return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))
XhmikosR's avatar
XhmikosR committed
363
  }
fat's avatar
fat committed
364

XhmikosR's avatar
XhmikosR committed
365
366
367
368
369
370
  Carousel.prototype.pause = function (e) {
    e || (this.paused = true)

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

XhmikosR's avatar
XhmikosR committed
373
    this.interval = clearInterval(this.interval)
374

XhmikosR's avatar
XhmikosR committed
375
376
    return this
  }
377

XhmikosR's avatar
XhmikosR committed
378
379
380
381
  Carousel.prototype.next = function () {
    if (this.sliding) return
    return this.slide('next')
  }
382

XhmikosR's avatar
XhmikosR committed
383
384
385
386
  Carousel.prototype.prev = function () {
    if (this.sliding) return
    return this.slide('prev')
  }
387

XhmikosR's avatar
XhmikosR committed
388
389
  Carousel.prototype.slide = function (type, next) {
    var $active   = this.$element.find('.item.active')
XhmikosR's avatar
XhmikosR committed
390
    var $next     = next || this.getItemForDirection(type, $active)
XhmikosR's avatar
XhmikosR committed
391
392
393
394
    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
395

XhmikosR's avatar
XhmikosR committed
396
397
398
    if (!$next.length) {
      if (!this.options.wrap) return
      $next = this.$element.find('.item')[fallback]()
Jacob Thornton's avatar
Jacob Thornton committed
399
400
    }

XhmikosR's avatar
XhmikosR committed
401
    if ($next.hasClass('active')) return (this.sliding = false)
402

XhmikosR's avatar
XhmikosR committed
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
    var relatedTarget = $next[0]
    var slideEvent = $.Event('slide.bs.carousel', {
      relatedTarget: relatedTarget,
      direction: direction
    })
    this.$element.trigger(slideEvent)
    if (slideEvent.isDefaultPrevented()) return

    this.sliding = true

    isCycling && this.pause()

    if (this.$indicators.length) {
      this.$indicators.find('.active').removeClass('active')
      var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])
      $nextIndicator && $nextIndicator.addClass('active')
    }

    var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid"
    if ($.support.transition && this.$element.hasClass('slide')) {
      $next.addClass(type)
      $next[0].offsetWidth // force reflow
      $active.addClass(direction)
      $next.addClass(direction)
      $active
        .one('bsTransitionEnd', function () {
          $next.removeClass([type, direction].join(' ')).addClass('active')
          $active.removeClass(['active', direction].join(' '))
          that.sliding = false
          setTimeout(function () {
            that.$element.trigger(slidEvent)
          }, 0)
        })
436
        .emulateTransitionEnd(Carousel.TRANSITION_DURATION)
XhmikosR's avatar
XhmikosR committed
437
438
439
440
441
442
    } else {
      $active.removeClass('active')
      $next.addClass('active')
      this.sliding = false
      this.$element.trigger(slidEvent)
    }
fat's avatar
fat committed
443

XhmikosR's avatar
XhmikosR committed
444
    isCycling && this.cycle()
445

XhmikosR's avatar
XhmikosR committed
446
447
    return this
  }
448
449


XhmikosR's avatar
XhmikosR committed
450
451
  // CAROUSEL PLUGIN DEFINITION
  // ==========================
Chris Rebert's avatar
Chris Rebert committed
452

XhmikosR's avatar
XhmikosR committed
453
454
455
456
457
458
459
460
461
462
463
464
465
  function Plugin(option) {
    return this.each(function () {
      var $this   = $(this)
      var data    = $this.data('bs.carousel')
      var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
      var action  = typeof option == 'string' ? option : options.slide

      if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
      if (typeof option == 'number') data.to(option)
      else if (action) data[action]()
      else if (options.interval) data.pause().cycle()
    })
  }
466

XhmikosR's avatar
XhmikosR committed
467
  var old = $.fn.carousel
Mark Otto's avatar
Mark Otto committed
468

XhmikosR's avatar
XhmikosR committed
469
470
  $.fn.carousel             = Plugin
  $.fn.carousel.Constructor = Carousel
471
472


XhmikosR's avatar
XhmikosR committed
473
474
  // CAROUSEL NO CONFLICT
  // ====================
475

XhmikosR's avatar
XhmikosR committed
476
477
478
479
  $.fn.carousel.noConflict = function () {
    $.fn.carousel = old
    return this
  }
480

fat's avatar
fat committed
481

XhmikosR's avatar
XhmikosR committed
482
483
  // CAROUSEL DATA-API
  // =================
484

XhmikosR's avatar
XhmikosR committed
485
486
487
488
489
490
491
492
  $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
    var href
    var $this   = $(this)
    var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
    if (!$target.hasClass('carousel')) return
    var options = $.extend({}, $target.data(), $this.data())
    var slideIndex = $this.attr('data-slide-to')
    if (slideIndex) options.interval = false
493

XhmikosR's avatar
XhmikosR committed
494
    Plugin.call($target, options)
495

XhmikosR's avatar
XhmikosR committed
496
497
    if (slideIndex) {
      $target.data('bs.carousel').to(slideIndex)
498
499
    }

XhmikosR's avatar
XhmikosR committed
500
501
    e.preventDefault()
  })
502

XhmikosR's avatar
XhmikosR committed
503
504
505
506
  $(window).on('load', function () {
    $('[data-ride="carousel"]').each(function () {
      var $carousel = $(this)
      Plugin.call($carousel, $carousel.data())
fat's avatar
fat committed
507
508
509
    })
  })

XhmikosR's avatar
XhmikosR committed
510
}(jQuery);
511

512
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
513
 * Bootstrap: collapse.js v3.2.0
Mark Otto's avatar
Mark Otto committed
514
 * http://getbootstrap.com/javascript/#collapse
515
 * ========================================================================
516
 * Copyright 2011-2014 Twitter, Inc.
517
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
518
 * ======================================================================== */
519
520


XhmikosR's avatar
XhmikosR committed
521
522
+function ($) {
  'use strict';
523

XhmikosR's avatar
XhmikosR committed
524
525
  // COLLAPSE PUBLIC CLASS DEFINITION
  // ================================
Mark Otto's avatar
grunt    
Mark Otto committed
526

XhmikosR's avatar
XhmikosR committed
527
528
529
530
  var Collapse = function (element, options) {
    this.$element      = $(element)
    this.options       = $.extend({}, Collapse.DEFAULTS, options)
    this.transitioning = null
531

XhmikosR's avatar
XhmikosR committed
532
533
534
    if (this.options.parent) this.$parent = $(this.options.parent)
    if (this.options.toggle) this.toggle()
  }
535

Mark Otto's avatar
Mark Otto committed
536
  Collapse.VERSION  = '3.2.0'
537

538
539
  Collapse.TRANSITION_DURATION = 350

XhmikosR's avatar
XhmikosR committed
540
541
542
  Collapse.DEFAULTS = {
    toggle: true
  }
fat's avatar
fat committed
543

XhmikosR's avatar
XhmikosR committed
544
545
546
547
  Collapse.prototype.dimension = function () {
    var hasWidth = this.$element.hasClass('width')
    return hasWidth ? 'width' : 'height'
  }
548

XhmikosR's avatar
XhmikosR committed
549
550
  Collapse.prototype.show = function () {
    if (this.transitioning || this.$element.hasClass('in')) return
551

XhmikosR's avatar
XhmikosR committed
552
553
554
    var startEvent = $.Event('show.bs.collapse')
    this.$element.trigger(startEvent)
    if (startEvent.isDefaultPrevented()) return
555

XhmikosR's avatar
XhmikosR committed
556
    var actives = this.$parent && this.$parent.find('> .panel > .in')
557

XhmikosR's avatar
XhmikosR committed
558
559
560
561
562
563
    if (actives && actives.length) {
      var hasData = actives.data('bs.collapse')
      if (hasData && hasData.transitioning) return
      Plugin.call(actives, 'hide')
      hasData || actives.data('bs.collapse', null)
    }
564

XhmikosR's avatar
XhmikosR committed
565
    var dimension = this.dimension()
566

XhmikosR's avatar
XhmikosR committed
567
568
569
    this.$element
      .removeClass('collapse')
      .addClass('collapsing')[dimension](0)
570

XhmikosR's avatar
XhmikosR committed
571
    this.transitioning = 1
572

XhmikosR's avatar
XhmikosR committed
573
574
575
576
577
    var complete = function () {
      this.$element
        .removeClass('collapsing')
        .addClass('collapse in')[dimension]('')
      this.transitioning = 0
Chris Rebert's avatar
Chris Rebert committed
578
      this.$element
XhmikosR's avatar
XhmikosR committed
579
        .trigger('shown.bs.collapse')
Chris Rebert's avatar
Chris Rebert committed
580
    }
581

XhmikosR's avatar
XhmikosR committed
582
    if (!$.support.transition) return complete.call(this)
fat's avatar
fat committed
583

XhmikosR's avatar
XhmikosR committed
584
    var scrollSize = $.camelCase(['scroll', dimension].join('-'))
fat's avatar
fat committed
585

XhmikosR's avatar
XhmikosR committed
586
587
    this.$element
      .one('bsTransitionEnd', $.proxy(complete, this))
588
      .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])
XhmikosR's avatar
XhmikosR committed
589
  }
590

XhmikosR's avatar
XhmikosR committed
591
592
  Collapse.prototype.hide = function () {
    if (this.transitioning || !this.$element.hasClass('in')) return
593

XhmikosR's avatar
XhmikosR committed
594
595
596
    var startEvent = $.Event('hide.bs.collapse')
    this.$element.trigger(startEvent)
    if (startEvent.isDefaultPrevented()) return
597

XhmikosR's avatar
XhmikosR committed
598
    var dimension = this.dimension()
599

XhmikosR's avatar
XhmikosR committed
600
601
602
603
    this.$element[dimension](this.$element[dimension]())[0].offsetHeight

    this.$element
      .addClass('collapsing')
Mark Otto's avatar
grunt    
Mark Otto committed
604
      .removeClass('collapse in')
605

XhmikosR's avatar
XhmikosR committed
606
    this.transitioning = 1
607

XhmikosR's avatar
XhmikosR committed
608
609
    var complete = function () {
      this.transitioning = 0
Chris Rebert's avatar
Chris Rebert committed
610
      this.$element
XhmikosR's avatar
XhmikosR committed
611
612
613
        .trigger('hidden.bs.collapse')
        .removeClass('collapsing')
        .addClass('collapse')
Chris Rebert's avatar
Chris Rebert committed
614
    }
615

XhmikosR's avatar
XhmikosR committed
616
    if (!$.support.transition) return complete.call(this)
617

XhmikosR's avatar
XhmikosR committed
618
619
620
    this.$element
      [dimension](0)
      .one('bsTransitionEnd', $.proxy(complete, this))
621
      .emulateTransitionEnd(Collapse.TRANSITION_DURATION)
XhmikosR's avatar
XhmikosR committed
622
  }
623

XhmikosR's avatar
XhmikosR committed
624
625
626
  Collapse.prototype.toggle = function () {
    this[this.$element.hasClass('in') ? 'hide' : 'show']()
  }
627

628

XhmikosR's avatar
XhmikosR committed
629
630
  // COLLAPSE PLUGIN DEFINITION
  // ==========================
631

XhmikosR's avatar
XhmikosR committed
632
633
634
635
636
  function Plugin(option) {
    return this.each(function () {
      var $this   = $(this)
      var data    = $this.data('bs.collapse')
      var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
Mark Otto's avatar
Mark Otto committed
637

XhmikosR's avatar
XhmikosR committed
638
639
640
641
642
      if (!data && options.toggle && option == 'show') option = !option
      if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
      if (typeof option == 'string') data[option]()
    })
  }
643

XhmikosR's avatar
XhmikosR committed
644
  var old = $.fn.collapse
645

XhmikosR's avatar
XhmikosR committed
646
647
  $.fn.collapse             = Plugin
  $.fn.collapse.Constructor = Collapse
648

649

XhmikosR's avatar
XhmikosR committed
650
651
  // COLLAPSE NO CONFLICT
  // ====================
652

XhmikosR's avatar
XhmikosR committed
653
654
655
656
  $.fn.collapse.noConflict = function () {
    $.fn.collapse = old
    return this
  }
657

658

XhmikosR's avatar
XhmikosR committed
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
  // COLLAPSE DATA-API
  // =================

  $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) {
    var href
    var $this   = $(this)
    var target  = $this.attr('data-target')
        || e.preventDefault()
        || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
    var $target = $(target)
    var data    = $target.data('bs.collapse')
    var option  = data ? 'toggle' : $this.data()
    var parent  = $this.attr('data-parent')
    var $parent = parent && $(parent)

    if (!data || !data.transitioning) {
      if ($parent) $parent.find('[data-toggle="collapse"][data-parent="' + parent + '"]').not($this).addClass('collapsed')
Mark Otto's avatar
grunt    
Mark Otto committed
676
      $this.toggleClass('collapsed', $target.hasClass('in'))
XhmikosR's avatar
XhmikosR committed
677
    }
fat's avatar
fat committed
678

XhmikosR's avatar
XhmikosR committed
679
    Plugin.call($target, option)
680
681
  })

XhmikosR's avatar
XhmikosR committed
682
}(jQuery);
683

684
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
685
 * Bootstrap: dropdown.js v3.2.0
Mark Otto's avatar
Mark Otto committed
686
 * http://getbootstrap.com/javascript/#dropdowns
687
 * ========================================================================
688
 * Copyright 2011-2014 Twitter, Inc.
689
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
690
 * ======================================================================== */
691
692


XhmikosR's avatar
XhmikosR committed
693
694
+function ($) {
  'use strict';
Chris Rebert's avatar
Chris Rebert committed
695

XhmikosR's avatar
XhmikosR committed
696
697
  // DROPDOWN CLASS DEFINITION
  // =========================
Mark Otto's avatar
grunt    
Mark Otto committed
698

XhmikosR's avatar
XhmikosR committed
699
700
701
702
703
  var backdrop = '.dropdown-backdrop'
  var toggle   = '[data-toggle="dropdown"]'
  var Dropdown = function (element) {
    $(element).on('click.bs.dropdown', this.toggle)
  }
704

Mark Otto's avatar
Mark Otto committed
705
  Dropdown.VERSION = '3.2.0'
Mark Otto's avatar
grunt    
Mark Otto committed
706

XhmikosR's avatar
XhmikosR committed
707
708
  Dropdown.prototype.toggle = function (e) {
    var $this = $(this)
709

XhmikosR's avatar
XhmikosR committed
710
    if ($this.is('.disabled, :disabled')) return
711

XhmikosR's avatar
XhmikosR committed
712
713
    var $parent  = getParent($this)
    var isActive = $parent.hasClass('open')
714

XhmikosR's avatar
XhmikosR committed
715
    clearMenus()
fat's avatar
fat committed
716

XhmikosR's avatar
XhmikosR committed
717
718
719
720
721
    if (!isActive) {
      if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
        // if mobile we use a backdrop because click events don't delegate
        $('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
      }
722

XhmikosR's avatar
XhmikosR committed
723
724
      var relatedTarget = { relatedTarget: this }
      $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
725

XhmikosR's avatar
XhmikosR committed
726
      if (e.isDefaultPrevented()) return
727

728
729
730
      $this
        .trigger('focus')
        .attr('aria-expanded', 'true')
Mark Otto's avatar
Mark Otto committed
731

XhmikosR's avatar
XhmikosR committed
732
733
734
      $parent
        .toggleClass('open')
        .trigger('shown.bs.dropdown', relatedTarget)
fat's avatar
rebuild    
fat committed
735
    }
736

XhmikosR's avatar
XhmikosR committed
737
738
    return false
  }
739

XhmikosR's avatar
XhmikosR committed
740
741
  Dropdown.prototype.keydown = function (e) {
    if (!/(38|40|27)/.test(e.keyCode)) return
742

XhmikosR's avatar
XhmikosR committed
743
    var $this = $(this)
744

XhmikosR's avatar
XhmikosR committed
745
746
    e.preventDefault()
    e.stopPropagation()
747

XhmikosR's avatar
XhmikosR committed
748
    if ($this.is('.disabled, :disabled')) return
749

XhmikosR's avatar
XhmikosR committed
750
751
    var $parent  = getParent($this)
    var isActive = $parent.hasClass('open')
752

XhmikosR's avatar
XhmikosR committed
753
754
755
756
    if (!isActive || (isActive && e.keyCode == 27)) {
      if (e.which == 27) $parent.find(toggle).trigger('focus')
      return $this.trigger('click')
    }
757

XhmikosR's avatar
XhmikosR committed
758
759
    var desc = ' li:not(.divider):visible a'
    var $items = $parent.find('[role="menu"]' + desc + ', [role="listbox"]' + desc)
760

XhmikosR's avatar
XhmikosR committed
761
    if (!$items.length) return
762

XhmikosR's avatar
XhmikosR committed
763
    var index = $items.index($items.filter(':focus'))
764

XhmikosR's avatar
XhmikosR committed
765
766
767
    if (e.keyCode == 38 && index > 0)                 index--                        // up
    if (e.keyCode == 40 && index < $items.length - 1) index++                        // down
    if (!~index)                                      index = 0
768

XhmikosR's avatar
XhmikosR committed
769
770
    $items.eq(index).trigger('focus')
  }
Chris Rebert's avatar
Chris Rebert committed
771

XhmikosR's avatar
XhmikosR committed
772
773
774
775
  function clearMenus(e) {
    if (e && e.which === 3) return
    $(backdrop).remove()
    $(toggle).each(function () {
776
777
      var $this         = $(this)
      var $parent       = getParent($this)
XhmikosR's avatar
XhmikosR committed
778
      var relatedTarget = { relatedTarget: this }
779

XhmikosR's avatar
XhmikosR committed
780
      if (!$parent.hasClass('open')) return
781

XhmikosR's avatar
XhmikosR committed
782
      $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
783

XhmikosR's avatar
XhmikosR committed
784
      if (e.isDefaultPrevented()) return
785
786

      $this.attr('aria-expanded', 'false')
XhmikosR's avatar
XhmikosR committed
787
788
789
      $parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
    })
  }
790

XhmikosR's avatar
XhmikosR committed
791
792
  function getParent($this) {
    var selector = $this.attr('data-target')
793

XhmikosR's avatar
XhmikosR committed
794
795
796
    if (!selector) {
      selector = $this.attr('href')
      selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
797
798
    }

XhmikosR's avatar
XhmikosR committed
799
    var $parent = selector && $(selector)
800

XhmikosR's avatar
XhmikosR committed
801
802
    return $parent && $parent.length ? $parent : $this.parent()
  }
803
804


XhmikosR's avatar
XhmikosR committed
805
806
  // DROPDOWN PLUGIN DEFINITION
  // ==========================
807

XhmikosR's avatar
XhmikosR committed
808
809
810
811
  function Plugin(option) {
    return this.each(function () {
      var $this = $(this)
      var data  = $this.data('bs.dropdown')
812

XhmikosR's avatar
XhmikosR committed
813
814
815
816
      if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
      if (typeof option == 'string') data[option].call($this)
    })
  }
Mark Otto's avatar
Mark Otto committed
817

XhmikosR's avatar
XhmikosR committed
818
  var old = $.fn.dropdown
819

XhmikosR's avatar
XhmikosR committed
820
821
  $.fn.dropdown             = Plugin
  $.fn.dropdown.Constructor = Dropdown
822

823

XhmikosR's avatar
XhmikosR committed
824
825
  // DROPDOWN NO CONFLICT
  // ====================
826

XhmikosR's avatar
XhmikosR committed
827
828
829
830
  $.fn.dropdown.noConflict = function () {
    $.fn.dropdown = old
    return this
  }
831

832

XhmikosR's avatar
XhmikosR committed
833
834
835
836
837
838
839
840
  // APPLY TO STANDARD DROPDOWN ELEMENTS
  // ===================================

  $(document)
    .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"], [role="listbox"]', Dropdown.prototype.keydown)
841

XhmikosR's avatar
XhmikosR committed
842
}(jQuery);
843

844
/* ========================================================================
Mark Otto's avatar
Mark Otto committed
845
 * Bootstrap: modal.js v3.2.0
Mark Otto's avatar
Mark Otto committed
846
 * http://getbootstrap.com/javascript/#modals
847
 * ========================================================================
848
 * Copyright 2011-2014 Twitter, Inc.
849
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
850
 * ======================================================================== */
851
852


XhmikosR's avatar
XhmikosR committed
853
854
+function ($) {
  'use strict';
855

XhmikosR's avatar
XhmikosR committed
856
857
  // MODAL CLASS DEFINITION
  // ======================
858

XhmikosR's avatar
XhmikosR committed
859
860
861
862
863
864
865
  var Modal = function (element, options) {
    this.options        = options
    this.$body          = $(document.body)
    this.$element       = $(element)
    this.$backdrop      =
    this.isShown        = null
    this.scrollbarWidth = 0
866

XhmikosR's avatar
XhmikosR committed
867
868
869
870
871
872
    if (this.options.remote) {
      this.$element
        .find('.modal-content')
        .load(this.options.remote, $.proxy(function () {
          this.$element.trigger('loaded.bs.modal')
        }, this))
873
    }
XhmikosR's avatar
XhmikosR committed
874
  }
875

Mark Otto's avatar
Mark Otto committed
876
  Modal.VERSION  = '3.2.0'
Mark Otto's avatar
grunt    
Mark Otto committed
877

878
879
880
  Modal.TRANSITION_DURATION = 300
  Modal.BACKDROP_TRANSITION_DURATION = 150

XhmikosR's avatar
XhmikosR committed
881
882
883
884
885
  Modal.DEFAULTS = {
    backdrop: true,
    keyboard: true,
    show: true
  }
886

XhmikosR's avatar
XhmikosR committed
887
888
889
  Modal.prototype.toggle = function (_relatedTarget) {
    return this.isShown ? this.hide() : this.show(_relatedTarget)
  }
890

XhmikosR's avatar
XhmikosR committed
891
892
893
  Modal.prototype.show = function (_relatedTarget) {
    var that = this
    var e    = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
894

XhmikosR's avatar
XhmikosR committed
895
    this.$element.trigger(e)
896

XhmikosR's avatar
XhmikosR committed
897
    if (this.isShown || e.isDefaultPrevented()) return
898

XhmikosR's avatar
XhmikosR committed
899
    this.isShown = true
fat's avatar
build    
fat committed
900

XhmikosR's avatar
XhmikosR committed
901
902
    this.checkScrollbar()
    this.$body.addClass('modal-open')
903

XhmikosR's avatar
XhmikosR committed
904
905
    this.setScrollbar()
    this.escape()
fat's avatar
rebuild    
fat committed
906

XhmikosR's avatar
XhmikosR committed
907
    this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
908

XhmikosR's avatar
XhmikosR committed
909
910
    this.backdrop(function () {
      var transition = $.support.transition && that.$element.hasClass('fade')
911

XhmikosR's avatar
XhmikosR committed
912
913
914
      if (!that.$element.parent().length) {
        that.$element.appendTo(that.$body) // don't move modals dom position
      }
915

XhmikosR's avatar
XhmikosR committed
916
917
918
      that.$element
        .show()
        .scrollTop(0)
Jacob Thornton's avatar
Jacob Thornton committed
919

XhmikosR's avatar
XhmikosR committed
920
921
922
      if (transition) {
        that.$element[0].offsetWidth // force reflow
      }
923

XhmikosR's avatar
XhmikosR committed
924
925
926
      that.$element
        .addClass('in')
        .attr('aria-hidden', false)
927

XhmikosR's avatar
XhmikosR committed
928
      that.enforceFocus()
929

XhmikosR's avatar
XhmikosR committed
930
      var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
931

XhmikosR's avatar
XhmikosR committed
932
933
934
935
936
      transition ?
        that.$element.find('.modal-dialog') // wait for modal to slide in
          .one('bsTransitionEnd', function () {
            that.$element.trigger('focus').trigger(e)
          })
937
          .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
XhmikosR's avatar
XhmikosR committed
938
939
940
        that.$element.trigger('focus').trigger(e)
    })
  }
941

XhmikosR's avatar
XhmikosR committed
942
943
  Modal.prototype.hide = function (e) {
    if (e) e.preventDefault()
944

XhmikosR's avatar
XhmikosR committed
945
    e = $.Event('hide.bs.modal')
fat's avatar
build    
fat committed
946

XhmikosR's avatar
XhmikosR committed
947
    this.$element.trigger(e)
948

XhmikosR's avatar
XhmikosR committed
949
    if (!this.isShown || e.isDefaultPrevented()) return
950

XhmikosR's avatar
XhmikosR committed
951
    this.isShown = false
952

XhmikosR's avatar
XhmikosR committed
953
    this.$body.removeClass('modal-open')
954

XhmikosR's avatar
XhmikosR committed
955
956
    this.resetScrollbar()
    this.escape()
Chris Rebert's avatar
Chris Rebert committed
957

XhmikosR's avatar
XhmikosR committed
958
    $(document).off('focusin.bs.modal')
Chris Rebert's avatar
Chris Rebert committed
959

XhmikosR's avatar
XhmikosR committed
960
961
962
963
    this.$element
      .removeClass('in')
      .attr('aria-hidden', true)
      .off('click.dismiss.bs.modal')
964

XhmikosR's avatar
XhmikosR committed
965
966
967
    $.support.transition && this.$element.hasClass('fade') ?
      this.$element
        .one('bsTransitionEnd', $.proxy(this.hideModal, this))
968
        .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
XhmikosR's avatar
XhmikosR committed
969
970
      this.hideModal()
  }
971

XhmikosR's avatar
XhmikosR committed
972
973
974
975
976
977
978
979
980
981
982
983
  Modal.prototype.enforceFocus = function () {
    $(document)
      .off('focusin.bs.modal') // guard against infinite focus loop
      .on('focusin.bs.modal', $.proxy(function (e) {
        if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
          this.$element.trigger('focus')
        }
      }, this))
  }

  Modal.prototype.escape = function () {
    if (this.isShown && this.options.keyboard) {
Mark Otto's avatar
grunt    
Mark Otto committed
984
      this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {
XhmikosR's avatar
XhmikosR committed
985
986
987
        e.which == 27 && this.hide()
      }, this))
    } else if (!this.isShown) {
Mark Otto's avatar
grunt    
Mark Otto committed
988
      this.$element.off('keydown.dismiss.bs.modal')
XhmikosR's avatar
XhmikosR committed
989
990
991
992
993
994
995
996
997
998
    }
  }

  Modal.prototype.hideModal = function () {
    var that = this
    this.$element.hide()
    this.backdrop(function () {
      that.$element.trigger('hidden.bs.modal')
    })
  }
999

XhmikosR's avatar
XhmikosR committed
1000
  Modal.prototype.removeBackdrop = function () {
For faster browsing, not all history is shown. View entire blame