static/js/bootstrap.js
author Jens-Uwe Grooss <j.-u.grooss@fz-juelich.de>
Sun, 30 Mar 2025 22:43:01 +0200
changeset 1764 538a1495ac8a
parent 51 d68c1b192ade
permissions -rwxr-xr-x
eskp map plot update from 250330
hr@0
     1
/*!
info@51
     2
 * Bootstrap v3.0.3 (http://getbootstrap.com)
hr@0
     3
 * Copyright 2013 Twitter, Inc.
hr@0
     4
 * Licensed under http://www.apache.org/licenses/LICENSE-2.0
hr@0
     5
 */
hr@0
     6
info@51
     7
if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery") }
info@51
     8
info@51
     9
/* ========================================================================
info@51
    10
 * Bootstrap: transition.js v3.0.3
info@51
    11
 * http://getbootstrap.com/javascript/#transitions
info@51
    12
 * ========================================================================
info@51
    13
 * Copyright 2013 Twitter, Inc.
info@51
    14
 *
info@51
    15
 * Licensed under the Apache License, Version 2.0 (the "License");
info@51
    16
 * you may not use this file except in compliance with the License.
info@51
    17
 * You may obtain a copy of the License at
info@51
    18
 *
info@51
    19
 * http://www.apache.org/licenses/LICENSE-2.0
info@51
    20
 *
info@51
    21
 * Unless required by applicable law or agreed to in writing, software
info@51
    22
 * distributed under the License is distributed on an "AS IS" BASIS,
info@51
    23
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
info@51
    24
 * See the License for the specific language governing permissions and
info@51
    25
 * limitations under the License.
info@51
    26
 * ======================================================================== */
info@51
    27
info@51
    28
info@51
    29
+function ($) { "use strict";
info@51
    30
info@51
    31
  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
info@51
    32
  // ============================================================
info@51
    33
info@51
    34
  function transitionEnd() {
info@51
    35
    var el = document.createElement('bootstrap')
info@51
    36
info@51
    37
    var transEndEventNames = {
info@51
    38
      'WebkitTransition' : 'webkitTransitionEnd'
info@51
    39
    , 'MozTransition'    : 'transitionend'
info@51
    40
    , 'OTransition'      : 'oTransitionEnd otransitionend'
info@51
    41
    , 'transition'       : 'transitionend'
info@51
    42
    }
info@51
    43
info@51
    44
    for (var name in transEndEventNames) {
info@51
    45
      if (el.style[name] !== undefined) {
info@51
    46
        return { end: transEndEventNames[name] }
info@51
    47
      }
info@51
    48
    }
info@51
    49
  }
info@51
    50
info@51
    51
  // http://blog.alexmaccaw.com/css-transitions
info@51
    52
  $.fn.emulateTransitionEnd = function (duration) {
info@51
    53
    var called = false, $el = this
info@51
    54
    $(this).one($.support.transition.end, function () { called = true })
info@51
    55
    var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
info@51
    56
    setTimeout(callback, duration)
info@51
    57
    return this
info@51
    58
  }
info@51
    59
info@51
    60
  $(function () {
info@51
    61
    $.support.transition = transitionEnd()
info@51
    62
  })
info@51
    63
info@51
    64
}(jQuery);
info@51
    65
info@51
    66
/* ========================================================================
info@51
    67
 * Bootstrap: alert.js v3.0.3
info@51
    68
 * http://getbootstrap.com/javascript/#alerts
info@51
    69
 * ========================================================================
info@51
    70
 * Copyright 2013 Twitter, Inc.
info@51
    71
 *
info@51
    72
 * Licensed under the Apache License, Version 2.0 (the "License");
info@51
    73
 * you may not use this file except in compliance with the License.
info@51
    74
 * You may obtain a copy of the License at
info@51
    75
 *
info@51
    76
 * http://www.apache.org/licenses/LICENSE-2.0
info@51
    77
 *
info@51
    78
 * Unless required by applicable law or agreed to in writing, software
info@51
    79
 * distributed under the License is distributed on an "AS IS" BASIS,
info@51
    80
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
info@51
    81
 * See the License for the specific language governing permissions and
info@51
    82
 * limitations under the License.
info@51
    83
 * ======================================================================== */
info@51
    84
info@51
    85
info@51
    86
+function ($) { "use strict";
info@51
    87
info@51
    88
  // ALERT CLASS DEFINITION
info@51
    89
  // ======================
info@51
    90
info@51
    91
  var dismiss = '[data-dismiss="alert"]'
info@51
    92
  var Alert   = function (el) {
info@51
    93
    $(el).on('click', dismiss, this.close)
info@51
    94
  }
info@51
    95
info@51
    96
  Alert.prototype.close = function (e) {
info@51
    97
    var $this    = $(this)
info@51
    98
    var selector = $this.attr('data-target')
info@51
    99
info@51
   100
    if (!selector) {
info@51
   101
      selector = $this.attr('href')
info@51
   102
      selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
info@51
   103
    }
info@51
   104
info@51
   105
    var $parent = $(selector)
info@51
   106
info@51
   107
    if (e) e.preventDefault()
info@51
   108
info@51
   109
    if (!$parent.length) {
info@51
   110
      $parent = $this.hasClass('alert') ? $this : $this.parent()
info@51
   111
    }
info@51
   112
info@51
   113
    $parent.trigger(e = $.Event('close.bs.alert'))
info@51
   114
info@51
   115
    if (e.isDefaultPrevented()) return
info@51
   116
info@51
   117
    $parent.removeClass('in')
info@51
   118
info@51
   119
    function removeElement() {
info@51
   120
      $parent.trigger('closed.bs.alert').remove()
info@51
   121
    }
info@51
   122
info@51
   123
    $.support.transition && $parent.hasClass('fade') ?
info@51
   124
      $parent
info@51
   125
        .one($.support.transition.end, removeElement)
info@51
   126
        .emulateTransitionEnd(150) :
info@51
   127
      removeElement()
info@51
   128
  }
info@51
   129
info@51
   130
info@51
   131
  // ALERT PLUGIN DEFINITION
info@51
   132
  // =======================
info@51
   133
info@51
   134
  var old = $.fn.alert
info@51
   135
info@51
   136
  $.fn.alert = function (option) {
info@51
   137
    return this.each(function () {
info@51
   138
      var $this = $(this)
info@51
   139
      var data  = $this.data('bs.alert')
info@51
   140
info@51
   141
      if (!data) $this.data('bs.alert', (data = new Alert(this)))
info@51
   142
      if (typeof option == 'string') data[option].call($this)
info@51
   143
    })
info@51
   144
  }
info@51
   145
info@51
   146
  $.fn.alert.Constructor = Alert
info@51
   147
info@51
   148
info@51
   149
  // ALERT NO CONFLICT
info@51
   150
  // =================
info@51
   151
info@51
   152
  $.fn.alert.noConflict = function () {
info@51
   153
    $.fn.alert = old
info@51
   154
    return this
info@51
   155
  }
info@51
   156
info@51
   157
info@51
   158
  // ALERT DATA-API
info@51
   159
  // ==============
info@51
   160
info@51
   161
  $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
info@51
   162
info@51
   163
}(jQuery);
info@51
   164
info@51
   165
/* ========================================================================
info@51
   166
 * Bootstrap: button.js v3.0.3
info@51
   167
 * http://getbootstrap.com/javascript/#buttons
info@51
   168
 * ========================================================================
info@51
   169
 * Copyright 2013 Twitter, Inc.
info@51
   170
 *
info@51
   171
 * Licensed under the Apache License, Version 2.0 (the "License");
info@51
   172
 * you may not use this file except in compliance with the License.
info@51
   173
 * You may obtain a copy of the License at
info@51
   174
 *
info@51
   175
 * http://www.apache.org/licenses/LICENSE-2.0
info@51
   176
 *
info@51
   177
 * Unless required by applicable law or agreed to in writing, software
info@51
   178
 * distributed under the License is distributed on an "AS IS" BASIS,
info@51
   179
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
info@51
   180
 * See the License for the specific language governing permissions and
info@51
   181
 * limitations under the License.
info@51
   182
 * ======================================================================== */
info@51
   183
info@51
   184
info@51
   185
+function ($) { "use strict";
info@51
   186
info@51
   187
  // BUTTON PUBLIC CLASS DEFINITION
info@51
   188
  // ==============================
info@51
   189
info@51
   190
  var Button = function (element, options) {
info@51
   191
    this.$element = $(element)
info@51
   192
    this.options  = $.extend({}, Button.DEFAULTS, options)
info@51
   193
  }
info@51
   194
info@51
   195
  Button.DEFAULTS = {
info@51
   196
    loadingText: 'loading...'
info@51
   197
  }
info@51
   198
info@51
   199
  Button.prototype.setState = function (state) {
info@51
   200
    var d    = 'disabled'
info@51
   201
    var $el  = this.$element
info@51
   202
    var val  = $el.is('input') ? 'val' : 'html'
info@51
   203
    var data = $el.data()
info@51
   204
info@51
   205
    state = state + 'Text'
info@51
   206
info@51
   207
    if (!data.resetText) $el.data('resetText', $el[val]())
info@51
   208
info@51
   209
    $el[val](data[state] || this.options[state])
info@51
   210
info@51
   211
    // push to event loop to allow forms to submit
info@51
   212
    setTimeout(function () {
info@51
   213
      state == 'loadingText' ?
info@51
   214
        $el.addClass(d).attr(d, d) :
info@51
   215
        $el.removeClass(d).removeAttr(d);
info@51
   216
    }, 0)
info@51
   217
  }
info@51
   218
info@51
   219
  Button.prototype.toggle = function () {
info@51
   220
    var $parent = this.$element.closest('[data-toggle="buttons"]')
info@51
   221
    var changed = true
info@51
   222
info@51
   223
    if ($parent.length) {
info@51
   224
      var $input = this.$element.find('input')
info@51
   225
      if ($input.prop('type') === 'radio') {
info@51
   226
        // see if clicking on current one
info@51
   227
        if ($input.prop('checked') && this.$element.hasClass('active'))
info@51
   228
          changed = false
info@51
   229
        else
info@51
   230
          $parent.find('.active').removeClass('active')
info@51
   231
      }
info@51
   232
      if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
info@51
   233
    }
info@51
   234
info@51
   235
    if (changed) this.$element.toggleClass('active')
info@51
   236
  }
info@51
   237
info@51
   238
info@51
   239
  // BUTTON PLUGIN DEFINITION
info@51
   240
  // ========================
info@51
   241
info@51
   242
  var old = $.fn.button
info@51
   243
info@51
   244
  $.fn.button = function (option) {
info@51
   245
    return this.each(function () {
info@51
   246
      var $this   = $(this)
info@51
   247
      var data    = $this.data('bs.button')
info@51
   248
      var options = typeof option == 'object' && option
info@51
   249
info@51
   250
      if (!data) $this.data('bs.button', (data = new Button(this, options)))
info@51
   251
info@51
   252
      if (option == 'toggle') data.toggle()
info@51
   253
      else if (option) data.setState(option)
info@51
   254
    })
info@51
   255
  }
info@51
   256
info@51
   257
  $.fn.button.Constructor = Button
info@51
   258
info@51
   259
info@51
   260
  // BUTTON NO CONFLICT
info@51
   261
  // ==================
info@51
   262
info@51
   263
  $.fn.button.noConflict = function () {
info@51
   264
    $.fn.button = old
info@51
   265
    return this
info@51
   266
  }
info@51
   267
info@51
   268
info@51
   269
  // BUTTON DATA-API
info@51
   270
  // ===============
info@51
   271
info@51
   272
  $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) {
info@51
   273
    var $btn = $(e.target)
info@51
   274
    if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
info@51
   275
    $btn.button('toggle')
info@51
   276
    e.preventDefault()
info@51
   277
  })
info@51
   278
info@51
   279
}(jQuery);
info@51
   280
info@51
   281
/* ========================================================================
info@51
   282
 * Bootstrap: carousel.js v3.0.3
info@51
   283
 * http://getbootstrap.com/javascript/#carousel
info@51
   284
 * ========================================================================
info@51
   285
 * Copyright 2013 Twitter, Inc.
info@51
   286
 *
info@51
   287
 * Licensed under the Apache License, Version 2.0 (the "License");
info@51
   288
 * you may not use this file except in compliance with the License.
info@51
   289
 * You may obtain a copy of the License at
info@51
   290
 *
info@51
   291
 * http://www.apache.org/licenses/LICENSE-2.0
info@51
   292
 *
info@51
   293
 * Unless required by applicable law or agreed to in writing, software
info@51
   294
 * distributed under the License is distributed on an "AS IS" BASIS,
info@51
   295
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
info@51
   296
 * See the License for the specific language governing permissions and
info@51
   297
 * limitations under the License.
info@51
   298
 * ======================================================================== */
info@51
   299
info@51
   300
info@51
   301
+function ($) { "use strict";
info@51
   302
info@51
   303
  // CAROUSEL CLASS DEFINITION
info@51
   304
  // =========================
info@51
   305
info@51
   306
  var Carousel = function (element, options) {
info@51
   307
    this.$element    = $(element)
info@51
   308
    this.$indicators = this.$element.find('.carousel-indicators')
info@51
   309
    this.options     = options
info@51
   310
    this.paused      =
info@51
   311
    this.sliding     =
info@51
   312
    this.interval    =
info@51
   313
    this.$active     =
info@51
   314
    this.$items      = null
info@51
   315
info@51
   316
    this.options.pause == 'hover' && this.$element
info@51
   317
      .on('mouseenter', $.proxy(this.pause, this))
info@51
   318
      .on('mouseleave', $.proxy(this.cycle, this))
info@51
   319
  }
info@51
   320
info@51
   321
  Carousel.DEFAULTS = {
info@51
   322
    interval: 5000
info@51
   323
  , pause: 'hover'
info@51
   324
  , wrap: true
info@51
   325
  }
info@51
   326
info@51
   327
  Carousel.prototype.cycle =  function (e) {
info@51
   328
    e || (this.paused = false)
info@51
   329
info@51
   330
    this.interval && clearInterval(this.interval)
info@51
   331
info@51
   332
    this.options.interval
info@51
   333
      && !this.paused
info@51
   334
      && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
info@51
   335
info@51
   336
    return this
info@51
   337
  }
info@51
   338
info@51
   339
  Carousel.prototype.getActiveIndex = function () {
info@51
   340
    this.$active = this.$element.find('.item.active')
info@51
   341
    this.$items  = this.$active.parent().children()
info@51
   342
info@51
   343
    return this.$items.index(this.$active)
info@51
   344
  }
info@51
   345
info@51
   346
  Carousel.prototype.to = function (pos) {
info@51
   347
    var that        = this
info@51
   348
    var activeIndex = this.getActiveIndex()
info@51
   349
info@51
   350
    if (pos > (this.$items.length - 1) || pos < 0) return
info@51
   351
info@51
   352
    if (this.sliding)       return this.$element.one('slid.bs.carousel', function () { that.to(pos) })
info@51
   353
    if (activeIndex == pos) return this.pause().cycle()
info@51
   354
info@51
   355
    return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
info@51
   356
  }
info@51
   357
info@51
   358
  Carousel.prototype.pause = function (e) {
info@51
   359
    e || (this.paused = true)
info@51
   360
info@51
   361
    if (this.$element.find('.next, .prev').length && $.support.transition.end) {
info@51
   362
      this.$element.trigger($.support.transition.end)
info@51
   363
      this.cycle(true)
info@51
   364
    }
info@51
   365
info@51
   366
    this.interval = clearInterval(this.interval)
info@51
   367
info@51
   368
    return this
info@51
   369
  }
info@51
   370
info@51
   371
  Carousel.prototype.next = function () {
info@51
   372
    if (this.sliding) return
info@51
   373
    return this.slide('next')
info@51
   374
  }
info@51
   375
info@51
   376
  Carousel.prototype.prev = function () {
info@51
   377
    if (this.sliding) return
info@51
   378
    return this.slide('prev')
info@51
   379
  }
info@51
   380
info@51
   381
  Carousel.prototype.slide = function (type, next) {
info@51
   382
    var $active   = this.$element.find('.item.active')
info@51
   383
    var $next     = next || $active[type]()
info@51
   384
    var isCycling = this.interval
info@51
   385
    var direction = type == 'next' ? 'left' : 'right'
info@51
   386
    var fallback  = type == 'next' ? 'first' : 'last'
info@51
   387
    var that      = this
info@51
   388
info@51
   389
    if (!$next.length) {
info@51
   390
      if (!this.options.wrap) return
info@51
   391
      $next = this.$element.find('.item')[fallback]()
info@51
   392
    }
info@51
   393
info@51
   394
    this.sliding = true
info@51
   395
info@51
   396
    isCycling && this.pause()
info@51
   397
info@51
   398
    var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction })
info@51
   399
info@51
   400
    if ($next.hasClass('active')) return
info@51
   401
info@51
   402
    if (this.$indicators.length) {
info@51
   403
      this.$indicators.find('.active').removeClass('active')
info@51
   404
      this.$element.one('slid.bs.carousel', function () {
info@51
   405
        var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
info@51
   406
        $nextIndicator && $nextIndicator.addClass('active')
info@51
   407
      })
info@51
   408
    }
info@51
   409
info@51
   410
    if ($.support.transition && this.$element.hasClass('slide')) {
info@51
   411
      this.$element.trigger(e)
info@51
   412
      if (e.isDefaultPrevented()) return
info@51
   413
      $next.addClass(type)
info@51
   414
      $next[0].offsetWidth // force reflow
info@51
   415
      $active.addClass(direction)
info@51
   416
      $next.addClass(direction)
info@51
   417
      $active
info@51
   418
        .one($.support.transition.end, function () {
info@51
   419
          $next.removeClass([type, direction].join(' ')).addClass('active')
info@51
   420
          $active.removeClass(['active', direction].join(' '))
info@51
   421
          that.sliding = false
info@51
   422
          setTimeout(function () { that.$element.trigger('slid.bs.carousel') }, 0)
info@51
   423
        })
info@51
   424
        .emulateTransitionEnd(600)
info@51
   425
    } else {
info@51
   426
      this.$element.trigger(e)
info@51
   427
      if (e.isDefaultPrevented()) return
info@51
   428
      $active.removeClass('active')
info@51
   429
      $next.addClass('active')
info@51
   430
      this.sliding = false
info@51
   431
      this.$element.trigger('slid.bs.carousel')
info@51
   432
    }
info@51
   433
info@51
   434
    isCycling && this.cycle()
info@51
   435
info@51
   436
    return this
info@51
   437
  }
info@51
   438
info@51
   439
info@51
   440
  // CAROUSEL PLUGIN DEFINITION
info@51
   441
  // ==========================
info@51
   442
info@51
   443
  var old = $.fn.carousel
info@51
   444
info@51
   445
  $.fn.carousel = function (option) {
info@51
   446
    return this.each(function () {
info@51
   447
      var $this   = $(this)
info@51
   448
      var data    = $this.data('bs.carousel')
info@51
   449
      var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
info@51
   450
      var action  = typeof option == 'string' ? option : options.slide
info@51
   451
info@51
   452
      if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
info@51
   453
      if (typeof option == 'number') data.to(option)
info@51
   454
      else if (action) data[action]()
info@51
   455
      else if (options.interval) data.pause().cycle()
info@51
   456
    })
info@51
   457
  }
info@51
   458
info@51
   459
  $.fn.carousel.Constructor = Carousel
info@51
   460
info@51
   461
info@51
   462
  // CAROUSEL NO CONFLICT
info@51
   463
  // ====================
info@51
   464
info@51
   465
  $.fn.carousel.noConflict = function () {
info@51
   466
    $.fn.carousel = old
info@51
   467
    return this
info@51
   468
  }
info@51
   469
info@51
   470
info@51
   471
  // CAROUSEL DATA-API
info@51
   472
  // =================
info@51
   473
info@51
   474
  $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
info@51
   475
    var $this   = $(this), href
info@51
   476
    var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
info@51
   477
    var options = $.extend({}, $target.data(), $this.data())
info@51
   478
    var slideIndex = $this.attr('data-slide-to')
info@51
   479
    if (slideIndex) options.interval = false
info@51
   480
info@51
   481
    $target.carousel(options)
info@51
   482
info@51
   483
    if (slideIndex = $this.attr('data-slide-to')) {
info@51
   484
      $target.data('bs.carousel').to(slideIndex)
info@51
   485
    }
info@51
   486
info@51
   487
    e.preventDefault()
info@51
   488
  })
info@51
   489
info@51
   490
  $(window).on('load', function () {
info@51
   491
    $('[data-ride="carousel"]').each(function () {
info@51
   492
      var $carousel = $(this)
info@51
   493
      $carousel.carousel($carousel.data())
info@51
   494
    })
info@51
   495
  })
info@51
   496
info@51
   497
}(jQuery);
info@51
   498
info@51
   499
/* ========================================================================
info@51
   500
 * Bootstrap: collapse.js v3.0.3
info@51
   501
 * http://getbootstrap.com/javascript/#collapse
info@51
   502
 * ========================================================================
info@51
   503
 * Copyright 2013 Twitter, Inc.
info@51
   504
 *
info@51
   505
 * Licensed under the Apache License, Version 2.0 (the "License");
info@51
   506
 * you may not use this file except in compliance with the License.
info@51
   507
 * You may obtain a copy of the License at
info@51
   508
 *
info@51
   509
 * http://www.apache.org/licenses/LICENSE-2.0
info@51
   510
 *
info@51
   511
 * Unless required by applicable law or agreed to in writing, software
info@51
   512
 * distributed under the License is distributed on an "AS IS" BASIS,
info@51
   513
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
info@51
   514
 * See the License for the specific language governing permissions and
info@51
   515
 * limitations under the License.
info@51
   516
 * ======================================================================== */
info@51
   517
info@51
   518
info@51
   519
+function ($) { "use strict";
info@51
   520
info@51
   521
  // COLLAPSE PUBLIC CLASS DEFINITION
info@51
   522
  // ================================
info@51
   523
info@51
   524
  var Collapse = function (element, options) {
info@51
   525
    this.$element      = $(element)
info@51
   526
    this.options       = $.extend({}, Collapse.DEFAULTS, options)
info@51
   527
    this.transitioning = null
info@51
   528
info@51
   529
    if (this.options.parent) this.$parent = $(this.options.parent)
info@51
   530
    if (this.options.toggle) this.toggle()
info@51
   531
  }
info@51
   532
info@51
   533
  Collapse.DEFAULTS = {
info@51
   534
    toggle: true
info@51
   535
  }
info@51
   536
info@51
   537
  Collapse.prototype.dimension = function () {
info@51
   538
    var hasWidth = this.$element.hasClass('width')
info@51
   539
    return hasWidth ? 'width' : 'height'
info@51
   540
  }
info@51
   541
info@51
   542
  Collapse.prototype.show = function () {
info@51
   543
    if (this.transitioning || this.$element.hasClass('in')) return
info@51
   544
info@51
   545
    var startEvent = $.Event('show.bs.collapse')
info@51
   546
    this.$element.trigger(startEvent)
info@51
   547
    if (startEvent.isDefaultPrevented()) return
info@51
   548
info@51
   549
    var actives = this.$parent && this.$parent.find('> .panel > .in')
info@51
   550
info@51
   551
    if (actives && actives.length) {
info@51
   552
      var hasData = actives.data('bs.collapse')
info@51
   553
      if (hasData && hasData.transitioning) return
info@51
   554
      actives.collapse('hide')
info@51
   555
      hasData || actives.data('bs.collapse', null)
info@51
   556
    }
info@51
   557
info@51
   558
    var dimension = this.dimension()
info@51
   559
info@51
   560
    this.$element
info@51
   561
      .removeClass('collapse')
info@51
   562
      .addClass('collapsing')
info@51
   563
      [dimension](0)
info@51
   564
info@51
   565
    this.transitioning = 1
info@51
   566
info@51
   567
    var complete = function () {
info@51
   568
      this.$element
info@51
   569
        .removeClass('collapsing')
info@51
   570
        .addClass('in')
info@51
   571
        [dimension]('auto')
info@51
   572
      this.transitioning = 0
info@51
   573
      this.$element.trigger('shown.bs.collapse')
info@51
   574
    }
info@51
   575
info@51
   576
    if (!$.support.transition) return complete.call(this)
info@51
   577
info@51
   578
    var scrollSize = $.camelCase(['scroll', dimension].join('-'))
info@51
   579
info@51
   580
    this.$element
info@51
   581
      .one($.support.transition.end, $.proxy(complete, this))
info@51
   582
      .emulateTransitionEnd(350)
info@51
   583
      [dimension](this.$element[0][scrollSize])
info@51
   584
  }
info@51
   585
info@51
   586
  Collapse.prototype.hide = function () {
info@51
   587
    if (this.transitioning || !this.$element.hasClass('in')) return
info@51
   588
info@51
   589
    var startEvent = $.Event('hide.bs.collapse')
info@51
   590
    this.$element.trigger(startEvent)
info@51
   591
    if (startEvent.isDefaultPrevented()) return
info@51
   592
info@51
   593
    var dimension = this.dimension()
info@51
   594
info@51
   595
    this.$element
info@51
   596
      [dimension](this.$element[dimension]())
info@51
   597
      [0].offsetHeight
info@51
   598
info@51
   599
    this.$element
info@51
   600
      .addClass('collapsing')
info@51
   601
      .removeClass('collapse')
info@51
   602
      .removeClass('in')
info@51
   603
info@51
   604
    this.transitioning = 1
info@51
   605
info@51
   606
    var complete = function () {
info@51
   607
      this.transitioning = 0
info@51
   608
      this.$element
info@51
   609
        .trigger('hidden.bs.collapse')
info@51
   610
        .removeClass('collapsing')
info@51
   611
        .addClass('collapse')
info@51
   612
    }
info@51
   613
info@51
   614
    if (!$.support.transition) return complete.call(this)
info@51
   615
info@51
   616
    this.$element
info@51
   617
      [dimension](0)
info@51
   618
      .one($.support.transition.end, $.proxy(complete, this))
info@51
   619
      .emulateTransitionEnd(350)
info@51
   620
  }
info@51
   621
info@51
   622
  Collapse.prototype.toggle = function () {
info@51
   623
    this[this.$element.hasClass('in') ? 'hide' : 'show']()
info@51
   624
  }
info@51
   625
info@51
   626
info@51
   627
  // COLLAPSE PLUGIN DEFINITION
info@51
   628
  // ==========================
info@51
   629
info@51
   630
  var old = $.fn.collapse
info@51
   631
info@51
   632
  $.fn.collapse = function (option) {
info@51
   633
    return this.each(function () {
info@51
   634
      var $this   = $(this)
info@51
   635
      var data    = $this.data('bs.collapse')
info@51
   636
      var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
info@51
   637
info@51
   638
      if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
info@51
   639
      if (typeof option == 'string') data[option]()
info@51
   640
    })
info@51
   641
  }
info@51
   642
info@51
   643
  $.fn.collapse.Constructor = Collapse
info@51
   644
info@51
   645
info@51
   646
  // COLLAPSE NO CONFLICT
info@51
   647
  // ====================
info@51
   648
info@51
   649
  $.fn.collapse.noConflict = function () {
info@51
   650
    $.fn.collapse = old
info@51
   651
    return this
info@51
   652
  }
info@51
   653
info@51
   654
info@51
   655
  // COLLAPSE DATA-API
info@51
   656
  // =================
info@51
   657
info@51
   658
  $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) {
info@51
   659
    var $this   = $(this), href
info@51
   660
    var target  = $this.attr('data-target')
info@51
   661
        || e.preventDefault()
info@51
   662
        || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
info@51
   663
    var $target = $(target)
info@51
   664
    var data    = $target.data('bs.collapse')
info@51
   665
    var option  = data ? 'toggle' : $this.data()
info@51
   666
    var parent  = $this.attr('data-parent')
info@51
   667
    var $parent = parent && $(parent)
info@51
   668
info@51
   669
    if (!data || !data.transitioning) {
info@51
   670
      if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addClass('collapsed')
info@51
   671
      $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
info@51
   672
    }
info@51
   673
info@51
   674
    $target.collapse(option)
info@51
   675
  })
info@51
   676
info@51
   677
}(jQuery);
info@51
   678
info@51
   679
/* ========================================================================
info@51
   680
 * Bootstrap: dropdown.js v3.0.3
info@51
   681
 * http://getbootstrap.com/javascript/#dropdowns
info@51
   682
 * ========================================================================
info@51
   683
 * Copyright 2013 Twitter, Inc.
info@51
   684
 *
info@51
   685
 * Licensed under the Apache License, Version 2.0 (the "License");
info@51
   686
 * you may not use this file except in compliance with the License.
info@51
   687
 * You may obtain a copy of the License at
info@51
   688
 *
info@51
   689
 * http://www.apache.org/licenses/LICENSE-2.0
info@51
   690
 *
info@51
   691
 * Unless required by applicable law or agreed to in writing, software
info@51
   692
 * distributed under the License is distributed on an "AS IS" BASIS,
info@51
   693
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
info@51
   694
 * See the License for the specific language governing permissions and
info@51
   695
 * limitations under the License.
info@51
   696
 * ======================================================================== */
info@51
   697
info@51
   698
info@51
   699
+function ($) { "use strict";
info@51
   700
info@51
   701
  // DROPDOWN CLASS DEFINITION
info@51
   702
  // =========================
info@51
   703
info@51
   704
  var backdrop = '.dropdown-backdrop'
info@51
   705
  var toggle   = '[data-toggle=dropdown]'
info@51
   706
  var Dropdown = function (element) {
info@51
   707
    $(element).on('click.bs.dropdown', this.toggle)
info@51
   708
  }
info@51
   709
info@51
   710
  Dropdown.prototype.toggle = function (e) {
info@51
   711
    var $this = $(this)
info@51
   712
info@51
   713
    if ($this.is('.disabled, :disabled')) return
info@51
   714
info@51
   715
    var $parent  = getParent($this)
info@51
   716
    var isActive = $parent.hasClass('open')
info@51
   717
info@51
   718
    clearMenus()
info@51
   719
info@51
   720
    if (!isActive) {
info@51
   721
      if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
info@51
   722
        // if mobile we use a backdrop because click events don't delegate
info@51
   723
        $('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
info@51
   724
      }
info@51
   725
info@51
   726
      $parent.trigger(e = $.Event('show.bs.dropdown'))
info@51
   727
info@51
   728
      if (e.isDefaultPrevented()) return
info@51
   729
info@51
   730
      $parent
info@51
   731
        .toggleClass('open')
info@51
   732
        .trigger('shown.bs.dropdown')
info@51
   733
info@51
   734
      $this.focus()
info@51
   735
    }
info@51
   736
info@51
   737
    return false
info@51
   738
  }
info@51
   739
info@51
   740
  Dropdown.prototype.keydown = function (e) {
info@51
   741
    if (!/(38|40|27)/.test(e.keyCode)) return
info@51
   742
info@51
   743
    var $this = $(this)
info@51
   744
info@51
   745
    e.preventDefault()
info@51
   746
    e.stopPropagation()
info@51
   747
info@51
   748
    if ($this.is('.disabled, :disabled')) return
info@51
   749
info@51
   750
    var $parent  = getParent($this)
info@51
   751
    var isActive = $parent.hasClass('open')
info@51
   752
info@51
   753
    if (!isActive || (isActive && e.keyCode == 27)) {
info@51
   754
      if (e.which == 27) $parent.find(toggle).focus()
info@51
   755
      return $this.click()
info@51
   756
    }
info@51
   757
info@51
   758
    var $items = $('[role=menu] li:not(.divider):visible a', $parent)
info@51
   759
info@51
   760
    if (!$items.length) return
info@51
   761
info@51
   762
    var index = $items.index($items.filter(':focus'))
info@51
   763
info@51
   764
    if (e.keyCode == 38 && index > 0)                 index--                        // up
info@51
   765
    if (e.keyCode == 40 && index < $items.length - 1) index++                        // down
info@51
   766
    if (!~index)                                      index=0
info@51
   767
info@51
   768
    $items.eq(index).focus()
info@51
   769
  }
info@51
   770
info@51
   771
  function clearMenus() {
info@51
   772
    $(backdrop).remove()
info@51
   773
    $(toggle).each(function (e) {
info@51
   774
      var $parent = getParent($(this))
info@51
   775
      if (!$parent.hasClass('open')) return
info@51
   776
      $parent.trigger(e = $.Event('hide.bs.dropdown'))
info@51
   777
      if (e.isDefaultPrevented()) return
info@51
   778
      $parent.removeClass('open').trigger('hidden.bs.dropdown')
info@51
   779
    })
info@51
   780
  }
info@51
   781
info@51
   782
  function getParent($this) {
info@51
   783
    var selector = $this.attr('data-target')
info@51
   784
info@51
   785
    if (!selector) {
info@51
   786
      selector = $this.attr('href')
info@51
   787
      selector = selector && /#/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
info@51
   788
    }
info@51
   789
info@51
   790
    var $parent = selector && $(selector)
info@51
   791
info@51
   792
    return $parent && $parent.length ? $parent : $this.parent()
info@51
   793
  }
info@51
   794
info@51
   795
info@51
   796
  // DROPDOWN PLUGIN DEFINITION
info@51
   797
  // ==========================
info@51
   798
info@51
   799
  var old = $.fn.dropdown
info@51
   800
info@51
   801
  $.fn.dropdown = function (option) {
info@51
   802
    return this.each(function () {
info@51
   803
      var $this = $(this)
info@51
   804
      var data  = $this.data('bs.dropdown')
info@51
   805
info@51
   806
      if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
info@51
   807
      if (typeof option == 'string') data[option].call($this)
info@51
   808
    })
info@51
   809
  }
info@51
   810
info@51
   811
  $.fn.dropdown.Constructor = Dropdown
info@51
   812
info@51
   813
info@51
   814
  // DROPDOWN NO CONFLICT
info@51
   815
  // ====================
info@51
   816
info@51
   817
  $.fn.dropdown.noConflict = function () {
info@51
   818
    $.fn.dropdown = old
info@51
   819
    return this
info@51
   820
  }
info@51
   821
info@51
   822
info@51
   823
  // APPLY TO STANDARD DROPDOWN ELEMENTS
info@51
   824
  // ===================================
info@51
   825
info@51
   826
  $(document)
info@51
   827
    .on('click.bs.dropdown.data-api', clearMenus)
info@51
   828
    .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
info@51
   829
    .on('click.bs.dropdown.data-api'  , toggle, Dropdown.prototype.toggle)
info@51
   830
    .on('keydown.bs.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
info@51
   831
info@51
   832
}(jQuery);
info@51
   833
info@51
   834
/* ========================================================================
info@51
   835
 * Bootstrap: modal.js v3.0.3
info@51
   836
 * http://getbootstrap.com/javascript/#modals
info@51
   837
 * ========================================================================
info@51
   838
 * Copyright 2013 Twitter, Inc.
info@51
   839
 *
info@51
   840
 * Licensed under the Apache License, Version 2.0 (the "License");
info@51
   841
 * you may not use this file except in compliance with the License.
info@51
   842
 * You may obtain a copy of the License at
info@51
   843
 *
info@51
   844
 * http://www.apache.org/licenses/LICENSE-2.0
info@51
   845
 *
info@51
   846
 * Unless required by applicable law or agreed to in writing, software
info@51
   847
 * distributed under the License is distributed on an "AS IS" BASIS,
info@51
   848
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
info@51
   849
 * See the License for the specific language governing permissions and
info@51
   850
 * limitations under the License.
info@51
   851
 * ======================================================================== */
info@51
   852
info@51
   853
info@51
   854
+function ($) { "use strict";
info@51
   855
info@51
   856
  // MODAL CLASS DEFINITION
info@51
   857
  // ======================
info@51
   858
info@51
   859
  var Modal = function (element, options) {
info@51
   860
    this.options   = options
info@51
   861
    this.$element  = $(element)
info@51
   862
    this.$backdrop =
info@51
   863
    this.isShown   = null
info@51
   864
info@51
   865
    if (this.options.remote) this.$element.load(this.options.remote)
info@51
   866
  }
info@51
   867
info@51
   868
  Modal.DEFAULTS = {
info@51
   869
      backdrop: true
info@51
   870
    , keyboard: true
info@51
   871
    , show: true
info@51
   872
  }
info@51
   873
info@51
   874
  Modal.prototype.toggle = function (_relatedTarget) {
info@51
   875
    return this[!this.isShown ? 'show' : 'hide'](_relatedTarget)
info@51
   876
  }
info@51
   877
info@51
   878
  Modal.prototype.show = function (_relatedTarget) {
info@51
   879
    var that = this
info@51
   880
    var e    = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
info@51
   881
info@51
   882
    this.$element.trigger(e)
info@51
   883
info@51
   884
    if (this.isShown || e.isDefaultPrevented()) return
info@51
   885
info@51
   886
    this.isShown = true
info@51
   887
info@51
   888
    this.escape()
info@51
   889
info@51
   890
    this.$element.on('click.dismiss.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
info@51
   891
info@51
   892
    this.backdrop(function () {
info@51
   893
      var transition = $.support.transition && that.$element.hasClass('fade')
info@51
   894
info@51
   895
      if (!that.$element.parent().length) {
info@51
   896
        that.$element.appendTo(document.body) // don't move modals dom position
info@51
   897
      }
info@51
   898
info@51
   899
      that.$element.show()
info@51
   900
info@51
   901
      if (transition) {
info@51
   902
        that.$element[0].offsetWidth // force reflow
info@51
   903
      }
info@51
   904
info@51
   905
      that.$element
info@51
   906
        .addClass('in')
info@51
   907
        .attr('aria-hidden', false)
info@51
   908
info@51
   909
      that.enforceFocus()
info@51
   910
info@51
   911
      var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
info@51
   912
info@51
   913
      transition ?
info@51
   914
        that.$element.find('.modal-dialog') // wait for modal to slide in
info@51
   915
          .one($.support.transition.end, function () {
info@51
   916
            that.$element.focus().trigger(e)
info@51
   917
          })
info@51
   918
          .emulateTransitionEnd(300) :
info@51
   919
        that.$element.focus().trigger(e)
info@51
   920
    })
info@51
   921
  }
info@51
   922
info@51
   923
  Modal.prototype.hide = function (e) {
info@51
   924
    if (e) e.preventDefault()
info@51
   925
info@51
   926
    e = $.Event('hide.bs.modal')
info@51
   927
info@51
   928
    this.$element.trigger(e)
info@51
   929
info@51
   930
    if (!this.isShown || e.isDefaultPrevented()) return
info@51
   931
info@51
   932
    this.isShown = false
info@51
   933
info@51
   934
    this.escape()
info@51
   935
info@51
   936
    $(document).off('focusin.bs.modal')
info@51
   937
info@51
   938
    this.$element
info@51
   939
      .removeClass('in')
info@51
   940
      .attr('aria-hidden', true)
info@51
   941
      .off('click.dismiss.modal')
info@51
   942
info@51
   943
    $.support.transition && this.$element.hasClass('fade') ?
info@51
   944
      this.$element
info@51
   945
        .one($.support.transition.end, $.proxy(this.hideModal, this))
info@51
   946
        .emulateTransitionEnd(300) :
info@51
   947
      this.hideModal()
info@51
   948
  }
info@51
   949
info@51
   950
  Modal.prototype.enforceFocus = function () {
info@51
   951
    $(document)
info@51
   952
      .off('focusin.bs.modal') // guard against infinite focus loop
info@51
   953
      .on('focusin.bs.modal', $.proxy(function (e) {
info@51
   954
        if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
info@51
   955
          this.$element.focus()
info@51
   956
        }
info@51
   957
      }, this))
info@51
   958
  }
info@51
   959
info@51
   960
  Modal.prototype.escape = function () {
info@51
   961
    if (this.isShown && this.options.keyboard) {
info@51
   962
      this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {
info@51
   963
        e.which == 27 && this.hide()
info@51
   964
      }, this))
info@51
   965
    } else if (!this.isShown) {
info@51
   966
      this.$element.off('keyup.dismiss.bs.modal')
info@51
   967
    }
info@51
   968
  }
info@51
   969
info@51
   970
  Modal.prototype.hideModal = function () {
info@51
   971
    var that = this
info@51
   972
    this.$element.hide()
info@51
   973
    this.backdrop(function () {
info@51
   974
      that.removeBackdrop()
info@51
   975
      that.$element.trigger('hidden.bs.modal')
info@51
   976
    })
info@51
   977
  }
info@51
   978
info@51
   979
  Modal.prototype.removeBackdrop = function () {
info@51
   980
    this.$backdrop && this.$backdrop.remove()
info@51
   981
    this.$backdrop = null
info@51
   982
  }
info@51
   983
info@51
   984
  Modal.prototype.backdrop = function (callback) {
info@51
   985
    var that    = this
info@51
   986
    var animate = this.$element.hasClass('fade') ? 'fade' : ''
info@51
   987
info@51
   988
    if (this.isShown && this.options.backdrop) {
info@51
   989
      var doAnimate = $.support.transition && animate
info@51
   990
info@51
   991
      this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
info@51
   992
        .appendTo(document.body)
info@51
   993
info@51
   994
      this.$element.on('click.dismiss.modal', $.proxy(function (e) {
info@51
   995
        if (e.target !== e.currentTarget) return
info@51
   996
        this.options.backdrop == 'static'
info@51
   997
          ? this.$element[0].focus.call(this.$element[0])
info@51
   998
          : this.hide.call(this)
info@51
   999
      }, this))
info@51
  1000
info@51
  1001
      if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
info@51
  1002
info@51
  1003
      this.$backdrop.addClass('in')
info@51
  1004
info@51
  1005
      if (!callback) return
info@51
  1006
info@51
  1007
      doAnimate ?
info@51
  1008
        this.$backdrop
info@51
  1009
          .one($.support.transition.end, callback)
info@51
  1010
          .emulateTransitionEnd(150) :
info@51
  1011
        callback()
info@51
  1012
info@51
  1013
    } else if (!this.isShown && this.$backdrop) {
info@51
  1014
      this.$backdrop.removeClass('in')
info@51
  1015
info@51
  1016
      $.support.transition && this.$element.hasClass('fade')?
info@51
  1017
        this.$backdrop
info@51
  1018
          .one($.support.transition.end, callback)
info@51
  1019
          .emulateTransitionEnd(150) :
info@51
  1020
        callback()
info@51
  1021
info@51
  1022
    } else if (callback) {
info@51
  1023
      callback()
info@51
  1024
    }
info@51
  1025
  }
info@51
  1026
info@51
  1027
info@51
  1028
  // MODAL PLUGIN DEFINITION
info@51
  1029
  // =======================
info@51
  1030
info@51
  1031
  var old = $.fn.modal
info@51
  1032
info@51
  1033
  $.fn.modal = function (option, _relatedTarget) {
info@51
  1034
    return this.each(function () {
info@51
  1035
      var $this   = $(this)
info@51
  1036
      var data    = $this.data('bs.modal')
info@51
  1037
      var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
info@51
  1038
info@51
  1039
      if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
info@51
  1040
      if (typeof option == 'string') data[option](_relatedTarget)
info@51
  1041
      else if (options.show) data.show(_relatedTarget)
info@51
  1042
    })
info@51
  1043
  }
info@51
  1044
info@51
  1045
  $.fn.modal.Constructor = Modal
info@51
  1046
info@51
  1047
info@51
  1048
  // MODAL NO CONFLICT
info@51
  1049
  // =================
info@51
  1050
info@51
  1051
  $.fn.modal.noConflict = function () {
info@51
  1052
    $.fn.modal = old
info@51
  1053
    return this
info@51
  1054
  }
info@51
  1055
info@51
  1056
info@51
  1057
  // MODAL DATA-API
info@51
  1058
  // ==============
info@51
  1059
info@51
  1060
  $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
info@51
  1061
    var $this   = $(this)
info@51
  1062
    var href    = $this.attr('href')
info@51
  1063
    var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7
info@51
  1064
    var option  = $target.data('modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
info@51
  1065
info@51
  1066
    e.preventDefault()
info@51
  1067
info@51
  1068
    $target
info@51
  1069
      .modal(option, this)
info@51
  1070
      .one('hide', function () {
info@51
  1071
        $this.is(':visible') && $this.focus()
info@51
  1072
      })
info@51
  1073
  })
info@51
  1074
info@51
  1075
  $(document)
info@51
  1076
    .on('show.bs.modal',  '.modal', function () { $(document.body).addClass('modal-open') })
info@51
  1077
    .on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })
info@51
  1078
info@51
  1079
}(jQuery);
info@51
  1080
info@51
  1081
/* ========================================================================
info@51
  1082
 * Bootstrap: tooltip.js v3.0.3
info@51
  1083
 * http://getbootstrap.com/javascript/#tooltip
info@51
  1084
 * Inspired by the original jQuery.tipsy by Jason Frame
info@51
  1085
 * ========================================================================
info@51
  1086
 * Copyright 2013 Twitter, Inc.
info@51
  1087
 *
info@51
  1088
 * Licensed under the Apache License, Version 2.0 (the "License");
info@51
  1089
 * you may not use this file except in compliance with the License.
info@51
  1090
 * You may obtain a copy of the License at
info@51
  1091
 *
info@51
  1092
 * http://www.apache.org/licenses/LICENSE-2.0
info@51
  1093
 *
info@51
  1094
 * Unless required by applicable law or agreed to in writing, software
info@51
  1095
 * distributed under the License is distributed on an "AS IS" BASIS,
info@51
  1096
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
info@51
  1097
 * See the License for the specific language governing permissions and
info@51
  1098
 * limitations under the License.
info@51
  1099
 * ======================================================================== */
info@51
  1100
info@51
  1101
info@51
  1102
+function ($) { "use strict";
info@51
  1103
info@51
  1104
  // TOOLTIP PUBLIC CLASS DEFINITION
info@51
  1105
  // ===============================
info@51
  1106
info@51
  1107
  var Tooltip = function (element, options) {
info@51
  1108
    this.type       =
info@51
  1109
    this.options    =
info@51
  1110
    this.enabled    =
info@51
  1111
    this.timeout    =
info@51
  1112
    this.hoverState =
info@51
  1113
    this.$element   = null
info@51
  1114
info@51
  1115
    this.init('tooltip', element, options)
info@51
  1116
  }
info@51
  1117
info@51
  1118
  Tooltip.DEFAULTS = {
info@51
  1119
    animation: true
info@51
  1120
  , placement: 'top'
info@51
  1121
  , selector: false
info@51
  1122
  , template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'
info@51
  1123
  , trigger: 'hover focus'
info@51
  1124
  , title: ''
info@51
  1125
  , delay: 0
info@51
  1126
  , html: false
info@51
  1127
  , container: false
info@51
  1128
  }
info@51
  1129
info@51
  1130
  Tooltip.prototype.init = function (type, element, options) {
info@51
  1131
    this.enabled  = true
info@51
  1132
    this.type     = type
info@51
  1133
    this.$element = $(element)
info@51
  1134
    this.options  = this.getOptions(options)
info@51
  1135
info@51
  1136
    var triggers = this.options.trigger.split(' ')
info@51
  1137
info@51
  1138
    for (var i = triggers.length; i--;) {
info@51
  1139
      var trigger = triggers[i]
info@51
  1140
info@51
  1141
      if (trigger == 'click') {
info@51
  1142
        this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
info@51
  1143
      } else if (trigger != 'manual') {
info@51
  1144
        var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focus'
info@51
  1145
        var eventOut = trigger == 'hover' ? 'mouseleave' : 'blur'
info@51
  1146
info@51
  1147
        this.$element.on(eventIn  + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
info@51
  1148
        this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
info@51
  1149
      }
info@51
  1150
    }
info@51
  1151
info@51
  1152
    this.options.selector ?
info@51
  1153
      (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
info@51
  1154
      this.fixTitle()
info@51
  1155
  }
info@51
  1156
info@51
  1157
  Tooltip.prototype.getDefaults = function () {
info@51
  1158
    return Tooltip.DEFAULTS
info@51
  1159
  }
info@51
  1160
info@51
  1161
  Tooltip.prototype.getOptions = function (options) {
info@51
  1162
    options = $.extend({}, this.getDefaults(), this.$element.data(), options)
info@51
  1163
info@51
  1164
    if (options.delay && typeof options.delay == 'number') {
info@51
  1165
      options.delay = {
info@51
  1166
        show: options.delay
info@51
  1167
      , hide: options.delay
info@51
  1168
      }
info@51
  1169
    }
info@51
  1170
info@51
  1171
    return options
info@51
  1172
  }
info@51
  1173
info@51
  1174
  Tooltip.prototype.getDelegateOptions = function () {
info@51
  1175
    var options  = {}
info@51
  1176
    var defaults = this.getDefaults()
info@51
  1177
info@51
  1178
    this._options && $.each(this._options, function (key, value) {
info@51
  1179
      if (defaults[key] != value) options[key] = value
info@51
  1180
    })
info@51
  1181
info@51
  1182
    return options
info@51
  1183
  }
info@51
  1184
info@51
  1185
  Tooltip.prototype.enter = function (obj) {
info@51
  1186
    var self = obj instanceof this.constructor ?
info@51
  1187
      obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
info@51
  1188
info@51
  1189
    clearTimeout(self.timeout)
info@51
  1190
info@51
  1191
    self.hoverState = 'in'
info@51
  1192
info@51
  1193
    if (!self.options.delay || !self.options.delay.show) return self.show()
info@51
  1194
info@51
  1195
    self.timeout = setTimeout(function () {
info@51
  1196
      if (self.hoverState == 'in') self.show()
info@51
  1197
    }, self.options.delay.show)
info@51
  1198
  }
info@51
  1199
info@51
  1200
  Tooltip.prototype.leave = function (obj) {
info@51
  1201
    var self = obj instanceof this.constructor ?
info@51
  1202
      obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
info@51
  1203
info@51
  1204
    clearTimeout(self.timeout)
info@51
  1205
info@51
  1206
    self.hoverState = 'out'
info@51
  1207
info@51
  1208
    if (!self.options.delay || !self.options.delay.hide) return self.hide()
info@51
  1209
info@51
  1210
    self.timeout = setTimeout(function () {
info@51
  1211
      if (self.hoverState == 'out') self.hide()
info@51
  1212
    }, self.options.delay.hide)
info@51
  1213
  }
info@51
  1214
info@51
  1215
  Tooltip.prototype.show = function () {
info@51
  1216
    var e = $.Event('show.bs.'+ this.type)
info@51
  1217
info@51
  1218
    if (this.hasContent() && this.enabled) {
info@51
  1219
      this.$element.trigger(e)
info@51
  1220
info@51
  1221
      if (e.isDefaultPrevented()) return
info@51
  1222
info@51
  1223
      var $tip = this.tip()
info@51
  1224
info@51
  1225
      this.setContent()
info@51
  1226
info@51
  1227
      if (this.options.animation) $tip.addClass('fade')
info@51
  1228
info@51
  1229
      var placement = typeof this.options.placement == 'function' ?
info@51
  1230
        this.options.placement.call(this, $tip[0], this.$element[0]) :
info@51
  1231
        this.options.placement
info@51
  1232
info@51
  1233
      var autoToken = /\s?auto?\s?/i
info@51
  1234
      var autoPlace = autoToken.test(placement)
info@51
  1235
      if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
info@51
  1236
info@51
  1237
      $tip
info@51
  1238
        .detach()
info@51
  1239
        .css({ top: 0, left: 0, display: 'block' })
info@51
  1240
        .addClass(placement)
info@51
  1241
info@51
  1242
      this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
info@51
  1243
info@51
  1244
      var pos          = this.getPosition()
info@51
  1245
      var actualWidth  = $tip[0].offsetWidth
info@51
  1246
      var actualHeight = $tip[0].offsetHeight
info@51
  1247
info@51
  1248
      if (autoPlace) {
info@51
  1249
        var $parent = this.$element.parent()
info@51
  1250
info@51
  1251
        var orgPlacement = placement
info@51
  1252
        var docScroll    = document.documentElement.scrollTop || document.body.scrollTop
info@51
  1253
        var parentWidth  = this.options.container == 'body' ? window.innerWidth  : $parent.outerWidth()
info@51
  1254
        var parentHeight = this.options.container == 'body' ? window.innerHeight : $parent.outerHeight()
info@51
  1255
        var parentLeft   = this.options.container == 'body' ? 0 : $parent.offset().left
info@51
  1256
info@51
  1257
        placement = placement == 'bottom' && pos.top   + pos.height  + actualHeight - docScroll > parentHeight  ? 'top'    :
info@51
  1258
                    placement == 'top'    && pos.top   - docScroll   - actualHeight < 0                         ? 'bottom' :
info@51
  1259
                    placement == 'right'  && pos.right + actualWidth > parentWidth                              ? 'left'   :
info@51
  1260
                    placement == 'left'   && pos.left  - actualWidth < parentLeft                               ? 'right'  :
info@51
  1261
                    placement
info@51
  1262
info@51
  1263
        $tip
info@51
  1264
          .removeClass(orgPlacement)
info@51
  1265
          .addClass(placement)
info@51
  1266
      }
info@51
  1267
info@51
  1268
      var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
info@51
  1269
info@51
  1270
      this.applyPlacement(calculatedOffset, placement)
info@51
  1271
      this.$element.trigger('shown.bs.' + this.type)
info@51
  1272
    }
info@51
  1273
  }
info@51
  1274
info@51
  1275
  Tooltip.prototype.applyPlacement = function(offset, placement) {
info@51
  1276
    var replace
info@51
  1277
    var $tip   = this.tip()
info@51
  1278
    var width  = $tip[0].offsetWidth
info@51
  1279
    var height = $tip[0].offsetHeight
info@51
  1280
info@51
  1281
    // manually read margins because getBoundingClientRect includes difference
info@51
  1282
    var marginTop = parseInt($tip.css('margin-top'), 10)
info@51
  1283
    var marginLeft = parseInt($tip.css('margin-left'), 10)
info@51
  1284
info@51
  1285
    // we must check for NaN for ie 8/9
info@51
  1286
    if (isNaN(marginTop))  marginTop  = 0
info@51
  1287
    if (isNaN(marginLeft)) marginLeft = 0
info@51
  1288
info@51
  1289
    offset.top  = offset.top  + marginTop
info@51
  1290
    offset.left = offset.left + marginLeft
info@51
  1291
info@51
  1292
    $tip
info@51
  1293
      .offset(offset)
info@51
  1294
      .addClass('in')
info@51
  1295
info@51
  1296
    // check to see if placing tip in new offset caused the tip to resize itself
info@51
  1297
    var actualWidth  = $tip[0].offsetWidth
info@51
  1298
    var actualHeight = $tip[0].offsetHeight
info@51
  1299
info@51
  1300
    if (placement == 'top' && actualHeight != height) {
info@51
  1301
      replace = true
info@51
  1302
      offset.top = offset.top + height - actualHeight
info@51
  1303
    }
info@51
  1304
info@51
  1305
    if (/bottom|top/.test(placement)) {
info@51
  1306
      var delta = 0
info@51
  1307
info@51
  1308
      if (offset.left < 0) {
info@51
  1309
        delta       = offset.left * -2
info@51
  1310
        offset.left = 0
info@51
  1311
info@51
  1312
        $tip.offset(offset)
info@51
  1313
info@51
  1314
        actualWidth  = $tip[0].offsetWidth
info@51
  1315
        actualHeight = $tip[0].offsetHeight
info@51
  1316
      }
info@51
  1317
info@51
  1318
      this.replaceArrow(delta - width + actualWidth, actualWidth, 'left')
info@51
  1319
    } else {
info@51
  1320
      this.replaceArrow(actualHeight - height, actualHeight, 'top')
info@51
  1321
    }
info@51
  1322
info@51
  1323
    if (replace) $tip.offset(offset)
info@51
  1324
  }
info@51
  1325
info@51
  1326
  Tooltip.prototype.replaceArrow = function(delta, dimension, position) {
info@51
  1327
    this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + "%") : '')
info@51
  1328
  }
info@51
  1329
info@51
  1330
  Tooltip.prototype.setContent = function () {
info@51
  1331
    var $tip  = this.tip()
info@51
  1332
    var title = this.getTitle()
info@51
  1333
info@51
  1334
    $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
info@51
  1335
    $tip.removeClass('fade in top bottom left right')
info@51
  1336
  }
info@51
  1337
info@51
  1338
  Tooltip.prototype.hide = function () {
info@51
  1339
    var that = this
info@51
  1340
    var $tip = this.tip()
info@51
  1341
    var e    = $.Event('hide.bs.' + this.type)
info@51
  1342
info@51
  1343
    function complete() {
info@51
  1344
      if (that.hoverState != 'in') $tip.detach()
info@51
  1345
    }
info@51
  1346
info@51
  1347
    this.$element.trigger(e)
info@51
  1348
info@51
  1349
    if (e.isDefaultPrevented()) return
info@51
  1350
info@51
  1351
    $tip.removeClass('in')
info@51
  1352
info@51
  1353
    $.support.transition && this.$tip.hasClass('fade') ?
info@51
  1354
      $tip
info@51
  1355
        .one($.support.transition.end, complete)
info@51
  1356
        .emulateTransitionEnd(150) :
info@51
  1357
      complete()
info@51
  1358
info@51
  1359
    this.$element.trigger('hidden.bs.' + this.type)
info@51
  1360
info@51
  1361
    return this
info@51
  1362
  }
info@51
  1363
info@51
  1364
  Tooltip.prototype.fixTitle = function () {
info@51
  1365
    var $e = this.$element
info@51
  1366
    if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
info@51
  1367
      $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
info@51
  1368
    }
info@51
  1369
  }
info@51
  1370
info@51
  1371
  Tooltip.prototype.hasContent = function () {
info@51
  1372
    return this.getTitle()
info@51
  1373
  }
info@51
  1374
info@51
  1375
  Tooltip.prototype.getPosition = function () {
info@51
  1376
    var el = this.$element[0]
info@51
  1377
    return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : {
info@51
  1378
      width: el.offsetWidth
info@51
  1379
    , height: el.offsetHeight
info@51
  1380
    }, this.$element.offset())
info@51
  1381
  }
info@51
  1382
info@51
  1383
  Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
info@51
  1384
    return placement == 'bottom' ? { top: pos.top + pos.height,   left: pos.left + pos.width / 2 - actualWidth / 2  } :
info@51
  1385
           placement == 'top'    ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2  } :
info@51
  1386
           placement == 'left'   ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
info@51
  1387
        /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width   }
info@51
  1388
  }
info@51
  1389
info@51
  1390
  Tooltip.prototype.getTitle = function () {
info@51
  1391
    var title
info@51
  1392
    var $e = this.$element
info@51
  1393
    var o  = this.options
info@51
  1394
info@51
  1395
    title = $e.attr('data-original-title')
info@51
  1396
      || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)
info@51
  1397
info@51
  1398
    return title
info@51
  1399
  }
info@51
  1400
info@51
  1401
  Tooltip.prototype.tip = function () {
info@51
  1402
    return this.$tip = this.$tip || $(this.options.template)
info@51
  1403
  }
info@51
  1404
info@51
  1405
  Tooltip.prototype.arrow = function () {
info@51
  1406
    return this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')
info@51
  1407
  }
info@51
  1408
info@51
  1409
  Tooltip.prototype.validate = function () {
info@51
  1410
    if (!this.$element[0].parentNode) {
info@51
  1411
      this.hide()
info@51
  1412
      this.$element = null
info@51
  1413
      this.options  = null
info@51
  1414
    }
info@51
  1415
  }
info@51
  1416
info@51
  1417
  Tooltip.prototype.enable = function () {
info@51
  1418
    this.enabled = true
info@51
  1419
  }
info@51
  1420
info@51
  1421
  Tooltip.prototype.disable = function () {
info@51
  1422
    this.enabled = false
info@51
  1423
  }
info@51
  1424
info@51
  1425
  Tooltip.prototype.toggleEnabled = function () {
info@51
  1426
    this.enabled = !this.enabled
info@51
  1427
  }
info@51
  1428
info@51
  1429
  Tooltip.prototype.toggle = function (e) {
info@51
  1430
    var self = e ? $(e.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) : this
info@51
  1431
    self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
info@51
  1432
  }
info@51
  1433
info@51
  1434
  Tooltip.prototype.destroy = function () {
info@51
  1435
    this.hide().$element.off('.' + this.type).removeData('bs.' + this.type)
info@51
  1436
  }
info@51
  1437
info@51
  1438
info@51
  1439
  // TOOLTIP PLUGIN DEFINITION
info@51
  1440
  // =========================
info@51
  1441
info@51
  1442
  var old = $.fn.tooltip
info@51
  1443
info@51
  1444
  $.fn.tooltip = function (option) {
info@51
  1445
    return this.each(function () {
info@51
  1446
      var $this   = $(this)
info@51
  1447
      var data    = $this.data('bs.tooltip')
info@51
  1448
      var options = typeof option == 'object' && option
info@51
  1449
info@51
  1450
      if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
info@51
  1451
      if (typeof option == 'string') data[option]()
info@51
  1452
    })
info@51
  1453
  }
info@51
  1454
info@51
  1455
  $.fn.tooltip.Constructor = Tooltip
info@51
  1456
info@51
  1457
info@51
  1458
  // TOOLTIP NO CONFLICT
info@51
  1459
  // ===================
info@51
  1460
info@51
  1461
  $.fn.tooltip.noConflict = function () {
info@51
  1462
    $.fn.tooltip = old
info@51
  1463
    return this
info@51
  1464
  }
info@51
  1465
info@51
  1466
}(jQuery);
info@51
  1467
info@51
  1468
/* ========================================================================
info@51
  1469
 * Bootstrap: popover.js v3.0.3
info@51
  1470
 * http://getbootstrap.com/javascript/#popovers
info@51
  1471
 * ========================================================================
info@51
  1472
 * Copyright 2013 Twitter, Inc.
info@51
  1473
 *
info@51
  1474
 * Licensed under the Apache License, Version 2.0 (the "License");
info@51
  1475
 * you may not use this file except in compliance with the License.
info@51
  1476
 * You may obtain a copy of the License at
info@51
  1477
 *
info@51
  1478
 * http://www.apache.org/licenses/LICENSE-2.0
info@51
  1479
 *
info@51
  1480
 * Unless required by applicable law or agreed to in writing, software
info@51
  1481
 * distributed under the License is distributed on an "AS IS" BASIS,
info@51
  1482
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
info@51
  1483
 * See the License for the specific language governing permissions and
info@51
  1484
 * limitations under the License.
info@51
  1485
 * ======================================================================== */
info@51
  1486
info@51
  1487
info@51
  1488
+function ($) { "use strict";
info@51
  1489
info@51
  1490
  // POPOVER PUBLIC CLASS DEFINITION
info@51
  1491
  // ===============================
info@51
  1492
info@51
  1493
  var Popover = function (element, options) {
info@51
  1494
    this.init('popover', element, options)
info@51
  1495
  }
info@51
  1496
info@51
  1497
  if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
info@51
  1498
info@51
  1499
  Popover.DEFAULTS = $.extend({} , $.fn.tooltip.Constructor.DEFAULTS, {
info@51
  1500
    placement: 'right'
info@51
  1501
  , trigger: 'click'
info@51
  1502
  , content: ''
info@51
  1503
  , template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
info@51
  1504
  })
info@51
  1505
info@51
  1506
info@51
  1507
  // NOTE: POPOVER EXTENDS tooltip.js
info@51
  1508
  // ================================
info@51
  1509
info@51
  1510
  Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
info@51
  1511
info@51
  1512
  Popover.prototype.constructor = Popover
info@51
  1513
info@51
  1514
  Popover.prototype.getDefaults = function () {
info@51
  1515
    return Popover.DEFAULTS
info@51
  1516
  }
info@51
  1517
info@51
  1518
  Popover.prototype.setContent = function () {
info@51
  1519
    var $tip    = this.tip()
info@51
  1520
    var title   = this.getTitle()
info@51
  1521
    var content = this.getContent()
info@51
  1522
info@51
  1523
    $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
info@51
  1524
    $tip.find('.popover-content')[this.options.html ? 'html' : 'text'](content)
info@51
  1525
info@51
  1526
    $tip.removeClass('fade top bottom left right in')
info@51
  1527
info@51
  1528
    // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
info@51
  1529
    // this manually by checking the contents.
info@51
  1530
    if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
info@51
  1531
  }
info@51
  1532
info@51
  1533
  Popover.prototype.hasContent = function () {
info@51
  1534
    return this.getTitle() || this.getContent()
info@51
  1535
  }
info@51
  1536
info@51
  1537
  Popover.prototype.getContent = function () {
info@51
  1538
    var $e = this.$element
info@51
  1539
    var o  = this.options
info@51
  1540
info@51
  1541
    return $e.attr('data-content')
info@51
  1542
      || (typeof o.content == 'function' ?
info@51
  1543
            o.content.call($e[0]) :
info@51
  1544
            o.content)
info@51
  1545
  }
info@51
  1546
info@51
  1547
  Popover.prototype.arrow = function () {
info@51
  1548
    return this.$arrow = this.$arrow || this.tip().find('.arrow')
info@51
  1549
  }
info@51
  1550
info@51
  1551
  Popover.prototype.tip = function () {
info@51
  1552
    if (!this.$tip) this.$tip = $(this.options.template)
info@51
  1553
    return this.$tip
info@51
  1554
  }
info@51
  1555
info@51
  1556
info@51
  1557
  // POPOVER PLUGIN DEFINITION
info@51
  1558
  // =========================
info@51
  1559
info@51
  1560
  var old = $.fn.popover
info@51
  1561
info@51
  1562
  $.fn.popover = function (option) {
info@51
  1563
    return this.each(function () {
info@51
  1564
      var $this   = $(this)
info@51
  1565
      var data    = $this.data('bs.popover')
info@51
  1566
      var options = typeof option == 'object' && option
info@51
  1567
info@51
  1568
      if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
info@51
  1569
      if (typeof option == 'string') data[option]()
info@51
  1570
    })
info@51
  1571
  }
info@51
  1572
info@51
  1573
  $.fn.popover.Constructor = Popover
info@51
  1574
info@51
  1575
info@51
  1576
  // POPOVER NO CONFLICT
info@51
  1577
  // ===================
info@51
  1578
info@51
  1579
  $.fn.popover.noConflict = function () {
info@51
  1580
    $.fn.popover = old
info@51
  1581
    return this
info@51
  1582
  }
info@51
  1583
info@51
  1584
}(jQuery);
info@51
  1585
info@51
  1586
/* ========================================================================
info@51
  1587
 * Bootstrap: scrollspy.js v3.0.3
info@51
  1588
 * http://getbootstrap.com/javascript/#scrollspy
info@51
  1589
 * ========================================================================
info@51
  1590
 * Copyright 2013 Twitter, Inc.
info@51
  1591
 *
info@51
  1592
 * Licensed under the Apache License, Version 2.0 (the "License");
info@51
  1593
 * you may not use this file except in compliance with the License.
info@51
  1594
 * You may obtain a copy of the License at
info@51
  1595
 *
info@51
  1596
 * http://www.apache.org/licenses/LICENSE-2.0
info@51
  1597
 *
info@51
  1598
 * Unless required by applicable law or agreed to in writing, software
info@51
  1599
 * distributed under the License is distributed on an "AS IS" BASIS,
info@51
  1600
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
info@51
  1601
 * See the License for the specific language governing permissions and
info@51
  1602
 * limitations under the License.
info@51
  1603
 * ======================================================================== */
info@51
  1604
info@51
  1605
info@51
  1606
+function ($) { "use strict";
info@51
  1607
info@51
  1608
  // SCROLLSPY CLASS DEFINITION
info@51
  1609
  // ==========================
info@51
  1610
info@51
  1611
  function ScrollSpy(element, options) {
info@51
  1612
    var href
info@51
  1613
    var process  = $.proxy(this.process, this)
info@51
  1614
info@51
  1615
    this.$element       = $(element).is('body') ? $(window) : $(element)
info@51
  1616
    this.$body          = $('body')
info@51
  1617
    this.$scrollElement = this.$element.on('scroll.bs.scroll-spy.data-api', process)
info@51
  1618
    this.options        = $.extend({}, ScrollSpy.DEFAULTS, options)
info@51
  1619
    this.selector       = (this.options.target
info@51
  1620
      || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
info@51
  1621
      || '') + ' .nav li > a'
info@51
  1622
    this.offsets        = $([])
info@51
  1623
    this.targets        = $([])
info@51
  1624
    this.activeTarget   = null
info@51
  1625
info@51
  1626
    this.refresh()
info@51
  1627
    this.process()
info@51
  1628
  }
info@51
  1629
info@51
  1630
  ScrollSpy.DEFAULTS = {
info@51
  1631
    offset: 10
info@51
  1632
  }
info@51
  1633
info@51
  1634
  ScrollSpy.prototype.refresh = function () {
info@51
  1635
    var offsetMethod = this.$element[0] == window ? 'offset' : 'position'
info@51
  1636
info@51
  1637
    this.offsets = $([])
info@51
  1638
    this.targets = $([])
info@51
  1639
info@51
  1640
    var self     = this
info@51
  1641
    var $targets = this.$body
info@51
  1642
      .find(this.selector)
info@51
  1643
      .map(function () {
info@51
  1644
        var $el   = $(this)
info@51
  1645
        var href  = $el.data('target') || $el.attr('href')
info@51
  1646
        var $href = /^#\w/.test(href) && $(href)
info@51
  1647
info@51
  1648
        return ($href
info@51
  1649
          && $href.length
info@51
  1650
          && [[ $href[offsetMethod]().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]]) || null
info@51
  1651
      })
info@51
  1652
      .sort(function (a, b) { return a[0] - b[0] })
info@51
  1653
      .each(function () {
info@51
  1654
        self.offsets.push(this[0])
info@51
  1655
        self.targets.push(this[1])
info@51
  1656
      })
info@51
  1657
  }
info@51
  1658
info@51
  1659
  ScrollSpy.prototype.process = function () {
info@51
  1660
    var scrollTop    = this.$scrollElement.scrollTop() + this.options.offset
info@51
  1661
    var scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight
info@51
  1662
    var maxScroll    = scrollHeight - this.$scrollElement.height()
info@51
  1663
    var offsets      = this.offsets
info@51
  1664
    var targets      = this.targets
info@51
  1665
    var activeTarget = this.activeTarget
info@51
  1666
    var i
info@51
  1667
info@51
  1668
    if (scrollTop >= maxScroll) {
info@51
  1669
      return activeTarget != (i = targets.last()[0]) && this.activate(i)
info@51
  1670
    }
info@51
  1671
info@51
  1672
    for (i = offsets.length; i--;) {
info@51
  1673
      activeTarget != targets[i]
info@51
  1674
        && scrollTop >= offsets[i]
info@51
  1675
        && (!offsets[i + 1] || scrollTop <= offsets[i + 1])
info@51
  1676
        && this.activate( targets[i] )
info@51
  1677
    }
info@51
  1678
  }
info@51
  1679
info@51
  1680
  ScrollSpy.prototype.activate = function (target) {
info@51
  1681
    this.activeTarget = target
info@51
  1682
info@51
  1683
    $(this.selector)
info@51
  1684
      .parents('.active')
info@51
  1685
      .removeClass('active')
info@51
  1686
info@51
  1687
    var selector = this.selector
info@51
  1688
      + '[data-target="' + target + '"],'
info@51
  1689
      + this.selector + '[href="' + target + '"]'
info@51
  1690
info@51
  1691
    var active = $(selector)
info@51
  1692
      .parents('li')
info@51
  1693
      .addClass('active')
info@51
  1694
info@51
  1695
    if (active.parent('.dropdown-menu').length)  {
info@51
  1696
      active = active
info@51
  1697
        .closest('li.dropdown')
info@51
  1698
        .addClass('active')
info@51
  1699
    }
info@51
  1700
info@51
  1701
    active.trigger('activate.bs.scrollspy')
info@51
  1702
  }
info@51
  1703
info@51
  1704
info@51
  1705
  // SCROLLSPY PLUGIN DEFINITION
info@51
  1706
  // ===========================
info@51
  1707
info@51
  1708
  var old = $.fn.scrollspy
info@51
  1709
info@51
  1710
  $.fn.scrollspy = function (option) {
info@51
  1711
    return this.each(function () {
info@51
  1712
      var $this   = $(this)
info@51
  1713
      var data    = $this.data('bs.scrollspy')
info@51
  1714
      var options = typeof option == 'object' && option
info@51
  1715
info@51
  1716
      if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
info@51
  1717
      if (typeof option == 'string') data[option]()
info@51
  1718
    })
info@51
  1719
  }
info@51
  1720
info@51
  1721
  $.fn.scrollspy.Constructor = ScrollSpy
info@51
  1722
info@51
  1723
info@51
  1724
  // SCROLLSPY NO CONFLICT
info@51
  1725
  // =====================
info@51
  1726
info@51
  1727
  $.fn.scrollspy.noConflict = function () {
info@51
  1728
    $.fn.scrollspy = old
info@51
  1729
    return this
info@51
  1730
  }
info@51
  1731
info@51
  1732
info@51
  1733
  // SCROLLSPY DATA-API
info@51
  1734
  // ==================
info@51
  1735
info@51
  1736
  $(window).on('load', function () {
info@51
  1737
    $('[data-spy="scroll"]').each(function () {
info@51
  1738
      var $spy = $(this)
info@51
  1739
      $spy.scrollspy($spy.data())
info@51
  1740
    })
info@51
  1741
  })
info@51
  1742
info@51
  1743
}(jQuery);
info@51
  1744
info@51
  1745
/* ========================================================================
info@51
  1746
 * Bootstrap: tab.js v3.0.3
info@51
  1747
 * http://getbootstrap.com/javascript/#tabs
info@51
  1748
 * ========================================================================
info@51
  1749
 * Copyright 2013 Twitter, Inc.
info@51
  1750
 *
info@51
  1751
 * Licensed under the Apache License, Version 2.0 (the "License");
info@51
  1752
 * you may not use this file except in compliance with the License.
info@51
  1753
 * You may obtain a copy of the License at
info@51
  1754
 *
info@51
  1755
 * http://www.apache.org/licenses/LICENSE-2.0
info@51
  1756
 *
info@51
  1757
 * Unless required by applicable law or agreed to in writing, software
info@51
  1758
 * distributed under the License is distributed on an "AS IS" BASIS,
info@51
  1759
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
info@51
  1760
 * See the License for the specific language governing permissions and
info@51
  1761
 * limitations under the License.
info@51
  1762
 * ======================================================================== */
info@51
  1763
info@51
  1764
info@51
  1765
+function ($) { "use strict";
info@51
  1766
info@51
  1767
  // TAB CLASS DEFINITION
info@51
  1768
  // ====================
info@51
  1769
info@51
  1770
  var Tab = function (element) {
info@51
  1771
    this.element = $(element)
info@51
  1772
  }
info@51
  1773
info@51
  1774
  Tab.prototype.show = function () {
info@51
  1775
    var $this    = this.element
info@51
  1776
    var $ul      = $this.closest('ul:not(.dropdown-menu)')
info@51
  1777
    var selector = $this.data('target')
info@51
  1778
info@51
  1779
    if (!selector) {
info@51
  1780
      selector = $this.attr('href')
info@51
  1781
      selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
info@51
  1782
    }
info@51
  1783
info@51
  1784
    if ($this.parent('li').hasClass('active')) return
info@51
  1785
info@51
  1786
    var previous = $ul.find('.active:last a')[0]
info@51
  1787
    var e        = $.Event('show.bs.tab', {
info@51
  1788
      relatedTarget: previous
info@51
  1789
    })
info@51
  1790
info@51
  1791
    $this.trigger(e)
info@51
  1792
info@51
  1793
    if (e.isDefaultPrevented()) return
info@51
  1794
info@51
  1795
    var $target = $(selector)
info@51
  1796
info@51
  1797
    this.activate($this.parent('li'), $ul)
info@51
  1798
    this.activate($target, $target.parent(), function () {
info@51
  1799
      $this.trigger({
info@51
  1800
        type: 'shown.bs.tab'
info@51
  1801
      , relatedTarget: previous
info@51
  1802
      })
info@51
  1803
    })
info@51
  1804
  }
info@51
  1805
info@51
  1806
  Tab.prototype.activate = function (element, container, callback) {
info@51
  1807
    var $active    = container.find('> .active')
info@51
  1808
    var transition = callback
info@51
  1809
      && $.support.transition
info@51
  1810
      && $active.hasClass('fade')
info@51
  1811
info@51
  1812
    function next() {
info@51
  1813
      $active
info@51
  1814
        .removeClass('active')
info@51
  1815
        .find('> .dropdown-menu > .active')
info@51
  1816
        .removeClass('active')
info@51
  1817
info@51
  1818
      element.addClass('active')
info@51
  1819
info@51
  1820
      if (transition) {
info@51
  1821
        element[0].offsetWidth // reflow for transition
info@51
  1822
        element.addClass('in')
info@51
  1823
      } else {
info@51
  1824
        element.removeClass('fade')
info@51
  1825
      }
info@51
  1826
info@51
  1827
      if (element.parent('.dropdown-menu')) {
info@51
  1828
        element.closest('li.dropdown').addClass('active')
info@51
  1829
      }
info@51
  1830
info@51
  1831
      callback && callback()
info@51
  1832
    }
info@51
  1833
info@51
  1834
    transition ?
info@51
  1835
      $active
info@51
  1836
        .one($.support.transition.end, next)
info@51
  1837
        .emulateTransitionEnd(150) :
info@51
  1838
      next()
info@51
  1839
info@51
  1840
    $active.removeClass('in')
info@51
  1841
  }
info@51
  1842
info@51
  1843
info@51
  1844
  // TAB PLUGIN DEFINITION
info@51
  1845
  // =====================
info@51
  1846
info@51
  1847
  var old = $.fn.tab
info@51
  1848
info@51
  1849
  $.fn.tab = function ( option ) {
info@51
  1850
    return this.each(function () {
info@51
  1851
      var $this = $(this)
info@51
  1852
      var data  = $this.data('bs.tab')
info@51
  1853
info@51
  1854
      if (!data) $this.data('bs.tab', (data = new Tab(this)))
info@51
  1855
      if (typeof option == 'string') data[option]()
info@51
  1856
    })
info@51
  1857
  }
info@51
  1858
info@51
  1859
  $.fn.tab.Constructor = Tab
info@51
  1860
info@51
  1861
info@51
  1862
  // TAB NO CONFLICT
info@51
  1863
  // ===============
info@51
  1864
info@51
  1865
  $.fn.tab.noConflict = function () {
info@51
  1866
    $.fn.tab = old
info@51
  1867
    return this
info@51
  1868
  }
info@51
  1869
info@51
  1870
info@51
  1871
  // TAB DATA-API
info@51
  1872
  // ============
info@51
  1873
info@51
  1874
  $(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
info@51
  1875
    e.preventDefault()
info@51
  1876
    $(this).tab('show')
info@51
  1877
  })
info@51
  1878
info@51
  1879
}(jQuery);
info@51
  1880
info@51
  1881
/* ========================================================================
info@51
  1882
 * Bootstrap: affix.js v3.0.3
info@51
  1883
 * http://getbootstrap.com/javascript/#affix
info@51
  1884
 * ========================================================================
info@51
  1885
 * Copyright 2013 Twitter, Inc.
info@51
  1886
 *
info@51
  1887
 * Licensed under the Apache License, Version 2.0 (the "License");
info@51
  1888
 * you may not use this file except in compliance with the License.
info@51
  1889
 * You may obtain a copy of the License at
info@51
  1890
 *
info@51
  1891
 * http://www.apache.org/licenses/LICENSE-2.0
info@51
  1892
 *
info@51
  1893
 * Unless required by applicable law or agreed to in writing, software
info@51
  1894
 * distributed under the License is distributed on an "AS IS" BASIS,
info@51
  1895
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
info@51
  1896
 * See the License for the specific language governing permissions and
info@51
  1897
 * limitations under the License.
info@51
  1898
 * ======================================================================== */
info@51
  1899
info@51
  1900
info@51
  1901
+function ($) { "use strict";
info@51
  1902
info@51
  1903
  // AFFIX CLASS DEFINITION
info@51
  1904
  // ======================
info@51
  1905
info@51
  1906
  var Affix = function (element, options) {
info@51
  1907
    this.options = $.extend({}, Affix.DEFAULTS, options)
info@51
  1908
    this.$window = $(window)
info@51
  1909
      .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
info@51
  1910
      .on('click.bs.affix.data-api',  $.proxy(this.checkPositionWithEventLoop, this))
info@51
  1911
info@51
  1912
    this.$element = $(element)
info@51
  1913
    this.affixed  =
info@51
  1914
    this.unpin    = null
info@51
  1915
info@51
  1916
    this.checkPosition()
info@51
  1917
  }
info@51
  1918
info@51
  1919
  Affix.RESET = 'affix affix-top affix-bottom'
info@51
  1920
info@51
  1921
  Affix.DEFAULTS = {
info@51
  1922
    offset: 0
info@51
  1923
  }
info@51
  1924
info@51
  1925
  Affix.prototype.checkPositionWithEventLoop = function () {
info@51
  1926
    setTimeout($.proxy(this.checkPosition, this), 1)
info@51
  1927
  }
info@51
  1928
info@51
  1929
  Affix.prototype.checkPosition = function () {
info@51
  1930
    if (!this.$element.is(':visible')) return
info@51
  1931
info@51
  1932
    var scrollHeight = $(document).height()
info@51
  1933
    var scrollTop    = this.$window.scrollTop()
info@51
  1934
    var position     = this.$element.offset()
info@51
  1935
    var offset       = this.options.offset
info@51
  1936
    var offsetTop    = offset.top
info@51
  1937
    var offsetBottom = offset.bottom
info@51
  1938
info@51
  1939
    if (typeof offset != 'object')         offsetBottom = offsetTop = offset
info@51
  1940
    if (typeof offsetTop == 'function')    offsetTop    = offset.top()
info@51
  1941
    if (typeof offsetBottom == 'function') offsetBottom = offset.bottom()
info@51
  1942
info@51
  1943
    var affix = this.unpin   != null && (scrollTop + this.unpin <= position.top) ? false :
info@51
  1944
                offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' :
info@51
  1945
                offsetTop    != null && (scrollTop <= offsetTop) ? 'top' : false
info@51
  1946
info@51
  1947
    if (this.affixed === affix) return
info@51
  1948
    if (this.unpin) this.$element.css('top', '')
info@51
  1949
info@51
  1950
    this.affixed = affix
info@51
  1951
    this.unpin   = affix == 'bottom' ? position.top - scrollTop : null
info@51
  1952
info@51
  1953
    this.$element.removeClass(Affix.RESET).addClass('affix' + (affix ? '-' + affix : ''))
info@51
  1954
info@51
  1955
    if (affix == 'bottom') {
info@51
  1956
      this.$element.offset({ top: document.body.offsetHeight - offsetBottom - this.$element.height() })
info@51
  1957
    }
info@51
  1958
  }
info@51
  1959
info@51
  1960
info@51
  1961
  // AFFIX PLUGIN DEFINITION
info@51
  1962
  // =======================
info@51
  1963
info@51
  1964
  var old = $.fn.affix
info@51
  1965
info@51
  1966
  $.fn.affix = function (option) {
info@51
  1967
    return this.each(function () {
info@51
  1968
      var $this   = $(this)
info@51
  1969
      var data    = $this.data('bs.affix')
info@51
  1970
      var options = typeof option == 'object' && option
info@51
  1971
info@51
  1972
      if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
info@51
  1973
      if (typeof option == 'string') data[option]()
info@51
  1974
    })
info@51
  1975
  }
info@51
  1976
info@51
  1977
  $.fn.affix.Constructor = Affix
info@51
  1978
info@51
  1979
info@51
  1980
  // AFFIX NO CONFLICT
info@51
  1981
  // =================
info@51
  1982
info@51
  1983
  $.fn.affix.noConflict = function () {
info@51
  1984
    $.fn.affix = old
info@51
  1985
    return this
info@51
  1986
  }
info@51
  1987
info@51
  1988
info@51
  1989
  // AFFIX DATA-API
info@51
  1990
  // ==============
info@51
  1991
info@51
  1992
  $(window).on('load', function () {
info@51
  1993
    $('[data-spy="affix"]').each(function () {
info@51
  1994
      var $spy = $(this)
info@51
  1995
      var data = $spy.data()
info@51
  1996
info@51
  1997
      data.offset = data.offset || {}
info@51
  1998
info@51
  1999
      if (data.offsetBottom) data.offset.bottom = data.offsetBottom
info@51
  2000
      if (data.offsetTop)    data.offset.top    = data.offsetTop
info@51
  2001
info@51
  2002
      $spy.affix(data)
info@51
  2003
    })
info@51
  2004
  })
info@51
  2005
info@51
  2006
}(jQuery);
Impressum Datenschutzerklärung