Subversion Repositories SmartDukaan

Rev

Rev 21555 | Details | Compare with Previous | Last modification | View Log | RSS feed

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