PageRenderTime 67ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 1ms

/vista/bootstrap-3.3.6-dist/js/bootstrap.js

https://gitlab.com/alastorxz/Hyperservices
JavaScript | 1667 lines | 1131 code | 411 blank | 125 comment | 329 complexity | c20fef59d49f7eeec6051e9c0ae10cd3 MD5 | raw file
  1. /*!
  2. * Bootstrap v3.3.6 (http://getbootstrap.com)
  3. * Copyright 2011-2015 Twitter, Inc.
  4. * Licensed under the MIT license
  5. */
  6. if (typeof jQuery === 'undefined') {
  7. throw new Error('Bootstrap\'s JavaScript requires jQuery')
  8. }
  9. +function ($) {
  10. 'use strict';
  11. var version = $.fn.jquery.split(' ')[0].split('.')
  12. if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] > 2)) {
  13. throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3')
  14. }
  15. }(jQuery);
  16. /* ========================================================================
  17. * Bootstrap: transition.js v3.3.6
  18. * http://getbootstrap.com/javascript/#transitions
  19. * ========================================================================
  20. * Copyright 2011-2015 Twitter, Inc.
  21. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  22. * ======================================================================== */
  23. +function ($) {
  24. 'use strict';
  25. // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
  26. // ============================================================
  27. function transitionEnd() {
  28. var el = document.createElement('bootstrap')
  29. var transEndEventNames = {
  30. WebkitTransition : 'webkitTransitionEnd',
  31. MozTransition : 'transitionend',
  32. OTransition : 'oTransitionEnd otransitionend',
  33. transition : 'transitionend'
  34. }
  35. for (var name in transEndEventNames) {
  36. if (el.style[name] !== undefined) {
  37. return { end: transEndEventNames[name] }
  38. }
  39. }
  40. return false // explicit for ie8 ( ._.)
  41. }
  42. // http://blog.alexmaccaw.com/css-transitions
  43. $.fn.emulateTransitionEnd = function (duration) {
  44. var called = false
  45. var $el = this
  46. $(this).one('bsTransitionEnd', function () { called = true })
  47. var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
  48. setTimeout(callback, duration)
  49. return this
  50. }
  51. $(function () {
  52. $.support.transition = transitionEnd()
  53. if (!$.support.transition) return
  54. $.event.special.bsTransitionEnd = {
  55. bindType: $.support.transition.end,
  56. delegateType: $.support.transition.end,
  57. handle: function (e) {
  58. if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
  59. }
  60. }
  61. })
  62. }(jQuery);
  63. /* ========================================================================
  64. * Bootstrap: alert.js v3.3.6
  65. * http://getbootstrap.com/javascript/#alerts
  66. * ========================================================================
  67. * Copyright 2011-2015 Twitter, Inc.
  68. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  69. * ======================================================================== */
  70. +function ($) {
  71. 'use strict';
  72. // ALERT CLASS DEFINITION
  73. // ======================
  74. var dismiss = '[data-dismiss="alert"]'
  75. var Alert = function (el) {
  76. $(el).on('click', dismiss, this.close)
  77. }
  78. Alert.VERSION = '3.3.6'
  79. Alert.TRANSITION_DURATION = 150
  80. Alert.prototype.close = function (e) {
  81. var $this = $(this)
  82. var selector = $this.attr('data-target')
  83. if (!selector) {
  84. selector = $this.attr('href')
  85. selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
  86. }
  87. var $parent = $(selector)
  88. if (e) e.preventDefault()
  89. if (!$parent.length) {
  90. $parent = $this.closest('.alert')
  91. }
  92. $parent.trigger(e = $.Event('close.bs.alert'))
  93. if (e.isDefaultPrevented()) return
  94. $parent.removeClass('in')
  95. function removeElement() {
  96. // detach from parent, fire event then clean up data
  97. $parent.detach().trigger('closed.bs.alert').remove()
  98. }
  99. $.support.transition && $parent.hasClass('fade') ?
  100. $parent
  101. .one('bsTransitionEnd', removeElement)
  102. .emulateTransitionEnd(Alert.TRANSITION_DURATION) :
  103. removeElement()
  104. }
  105. // ALERT PLUGIN DEFINITION
  106. // =======================
  107. function Plugin(option) {
  108. return this.each(function () {
  109. var $this = $(this)
  110. var data = $this.data('bs.alert')
  111. if (!data) $this.data('bs.alert', (data = new Alert(this)))
  112. if (typeof option == 'string') data[option].call($this)
  113. })
  114. }
  115. var old = $.fn.alert
  116. $.fn.alert = Plugin
  117. $.fn.alert.Constructor = Alert
  118. // ALERT NO CONFLICT
  119. // =================
  120. $.fn.alert.noConflict = function () {
  121. $.fn.alert = old
  122. return this
  123. }
  124. // ALERT DATA-API
  125. // ==============
  126. $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
  127. }(jQuery);
  128. /* ========================================================================
  129. * Bootstrap: button.js v3.3.6
  130. * http://getbootstrap.com/javascript/#buttons
  131. * ========================================================================
  132. * Copyright 2011-2015 Twitter, Inc.
  133. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  134. * ======================================================================== */
  135. +function ($) {
  136. 'use strict';
  137. // BUTTON PUBLIC CLASS DEFINITION
  138. // ==============================
  139. var Button = function (element, options) {
  140. this.$element = $(element)
  141. this.options = $.extend({}, Button.DEFAULTS, options)
  142. this.isLoading = false
  143. }
  144. Button.VERSION = '3.3.6'
  145. Button.DEFAULTS = {
  146. loadingText: 'loading...'
  147. }
  148. Button.prototype.setState = function (state) {
  149. var d = 'disabled'
  150. var $el = this.$element
  151. var val = $el.is('input') ? 'val' : 'html'
  152. var data = $el.data()
  153. state += 'Text'
  154. if (data.resetText == null) $el.data('resetText', $el[val]())
  155. // push to event loop to allow forms to submit
  156. setTimeout($.proxy(function () {
  157. $el[val](data[state] == null ? this.options[state] : data[state])
  158. if (state == 'loadingText') {
  159. this.isLoading = true
  160. $el.addClass(d).attr(d, d)
  161. } else if (this.isLoading) {
  162. this.isLoading = false
  163. $el.removeClass(d).removeAttr(d)
  164. }
  165. }, this), 0)
  166. }
  167. Button.prototype.toggle = function () {
  168. var changed = true
  169. var $parent = this.$element.closest('[data-toggle="buttons"]')
  170. if ($parent.length) {
  171. var $input = this.$element.find('input')
  172. if ($input.prop('type') == 'radio') {
  173. if ($input.prop('checked')) changed = false
  174. $parent.find('.active').removeClass('active')
  175. this.$element.addClass('active')
  176. } else if ($input.prop('type') == 'checkbox') {
  177. if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false
  178. this.$element.toggleClass('active')
  179. }
  180. $input.prop('checked', this.$element.hasClass('active'))
  181. if (changed) $input.trigger('change')
  182. } else {
  183. this.$element.attr('aria-pressed', !this.$element.hasClass('active'))
  184. this.$element.toggleClass('active')
  185. }
  186. }
  187. // BUTTON PLUGIN DEFINITION
  188. // ========================
  189. function Plugin(option) {
  190. return this.each(function () {
  191. var $this = $(this)
  192. var data = $this.data('bs.button')
  193. var options = typeof option == 'object' && option
  194. if (!data) $this.data('bs.button', (data = new Button(this, options)))
  195. if (option == 'toggle') data.toggle()
  196. else if (option) data.setState(option)
  197. })
  198. }
  199. var old = $.fn.button
  200. $.fn.button = Plugin
  201. $.fn.button.Constructor = Button
  202. // BUTTON NO CONFLICT
  203. // ==================
  204. $.fn.button.noConflict = function () {
  205. $.fn.button = old
  206. return this
  207. }
  208. // BUTTON DATA-API
  209. // ===============
  210. $(document)
  211. .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) {
  212. var $btn = $(e.target)
  213. if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
  214. Plugin.call($btn, 'toggle')
  215. if (!($(e.target).is('input[type="radio"]') || $(e.target).is('input[type="checkbox"]'))) e.preventDefault()
  216. })
  217. .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) {
  218. $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type))
  219. })
  220. }(jQuery);
  221. /* ========================================================================
  222. * Bootstrap: carousel.js v3.3.6
  223. * http://getbootstrap.com/javascript/#carousel
  224. * ========================================================================
  225. * Copyright 2011-2015 Twitter, Inc.
  226. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  227. * ======================================================================== */
  228. +function ($) {
  229. 'use strict';
  230. // CAROUSEL CLASS DEFINITION
  231. // =========================
  232. var Carousel = function (element, options) {
  233. this.$element = $(element)
  234. this.$indicators = this.$element.find('.carousel-indicators')
  235. this.options = options
  236. this.paused = null
  237. this.sliding = null
  238. this.interval = null
  239. this.$active = null
  240. this.$items = null
  241. this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this))
  242. this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element
  243. .on('mouseenter.bs.carousel', $.proxy(this.pause, this))
  244. .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
  245. }
  246. Carousel.VERSION = '3.3.6'
  247. Carousel.TRANSITION_DURATION = 600
  248. Carousel.DEFAULTS = {
  249. interval: 5000,
  250. pause: 'hover',
  251. wrap: true,
  252. keyboard: true
  253. }
  254. Carousel.prototype.keydown = function (e) {
  255. if (/input|textarea/i.test(e.target.tagName)) return
  256. switch (e.which) {
  257. case 37: this.prev(); break
  258. case 39: this.next(); break
  259. default: return
  260. }
  261. e.preventDefault()
  262. }
  263. Carousel.prototype.cycle = function (e) {
  264. e || (this.paused = false)
  265. this.interval && clearInterval(this.interval)
  266. this.options.interval
  267. && !this.paused
  268. && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
  269. return this
  270. }
  271. Carousel.prototype.getItemIndex = function (item) {
  272. this.$items = item.parent().children('.item')
  273. return this.$items.index(item || this.$active)
  274. }
  275. Carousel.prototype.getItemForDirection = function (direction, active) {
  276. var activeIndex = this.getItemIndex(active)
  277. var willWrap = (direction == 'prev' && activeIndex === 0)
  278. || (direction == 'next' && activeIndex == (this.$items.length - 1))
  279. if (willWrap && !this.options.wrap) return active
  280. var delta = direction == 'prev' ? -1 : 1
  281. var itemIndex = (activeIndex + delta) % this.$items.length
  282. return this.$items.eq(itemIndex)
  283. }
  284. Carousel.prototype.to = function (pos) {
  285. var that = this
  286. var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))
  287. if (pos > (this.$items.length - 1) || pos < 0) return
  288. if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid"
  289. if (activeIndex == pos) return this.pause().cycle()
  290. return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))
  291. }
  292. Carousel.prototype.pause = function (e) {
  293. e || (this.paused = true)
  294. if (this.$element.find('.next, .prev').length && $.support.transition) {
  295. this.$element.trigger($.support.transition.end)
  296. this.cycle(true)
  297. }
  298. this.interval = clearInterval(this.interval)
  299. return this
  300. }
  301. Carousel.prototype.next = function () {
  302. if (this.sliding) return
  303. return this.slide('next')
  304. }
  305. Carousel.prototype.prev = function () {
  306. if (this.sliding) return
  307. return this.slide('prev')
  308. }
  309. Carousel.prototype.slide = function (type, next) {
  310. var $active = this.$element.find('.item.active')
  311. var $next = next || this.getItemForDirection(type, $active)
  312. var isCycling = this.interval
  313. var direction = type == 'next' ? 'left' : 'right'
  314. var that = this
  315. if ($next.hasClass('active')) return (this.sliding = false)
  316. var relatedTarget = $next[0]
  317. var slideEvent = $.Event('slide.bs.carousel', {
  318. relatedTarget: relatedTarget,
  319. direction: direction
  320. })
  321. this.$element.trigger(slideEvent)
  322. if (slideEvent.isDefaultPrevented()) return
  323. this.sliding = true
  324. isCycling && this.pause()
  325. if (this.$indicators.length) {
  326. this.$indicators.find('.active').removeClass('active')
  327. var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])
  328. $nextIndicator && $nextIndicator.addClass('active')
  329. }
  330. var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid"
  331. if ($.support.transition && this.$element.hasClass('slide')) {
  332. $next.addClass(type)
  333. $next[0].offsetWidth // force reflow
  334. $active.addClass(direction)
  335. $next.addClass(direction)
  336. $active
  337. .one('bsTransitionEnd', function () {
  338. $next.removeClass([type, direction].join(' ')).addClass('active')
  339. $active.removeClass(['active', direction].join(' '))
  340. that.sliding = false
  341. setTimeout(function () {
  342. that.$element.trigger(slidEvent)
  343. }, 0)
  344. })
  345. .emulateTransitionEnd(Carousel.TRANSITION_DURATION)
  346. } else {
  347. $active.removeClass('active')
  348. $next.addClass('active')
  349. this.sliding = false
  350. this.$element.trigger(slidEvent)
  351. }
  352. isCycling && this.cycle()
  353. return this
  354. }
  355. // CAROUSEL PLUGIN DEFINITION
  356. // ==========================
  357. function Plugin(option) {
  358. return this.each(function () {
  359. var $this = $(this)
  360. var data = $this.data('bs.carousel')
  361. var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
  362. var action = typeof option == 'string' ? option : options.slide
  363. if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
  364. if (typeof option == 'number') data.to(option)
  365. else if (action) data[action]()
  366. else if (options.interval) data.pause().cycle()
  367. })
  368. }
  369. var old = $.fn.carousel
  370. $.fn.carousel = Plugin
  371. $.fn.carousel.Constructor = Carousel
  372. // CAROUSEL NO CONFLICT
  373. // ====================
  374. $.fn.carousel.noConflict = function () {
  375. $.fn.carousel = old
  376. return this
  377. }
  378. // CAROUSEL DATA-API
  379. // =================
  380. var clickHandler = function (e) {
  381. var href
  382. var $this = $(this)
  383. var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7
  384. if (!$target.hasClass('carousel')) return
  385. var options = $.extend({}, $target.data(), $this.data())
  386. var slideIndex = $this.attr('data-slide-to')
  387. if (slideIndex) options.interval = false
  388. Plugin.call($target, options)
  389. if (slideIndex) {
  390. $target.data('bs.carousel').to(slideIndex)
  391. }
  392. e.preventDefault()
  393. }
  394. $(document)
  395. .on('click.bs.carousel.data-api', '[data-slide]', clickHandler)
  396. .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)
  397. $(window).on('load', function () {
  398. $('[data-ride="carousel"]').each(function () {
  399. var $carousel = $(this)
  400. Plugin.call($carousel, $carousel.data())
  401. })
  402. })
  403. }(jQuery);
  404. /* ========================================================================
  405. * Bootstrap: collapse.js v3.3.6
  406. * http://getbootstrap.com/javascript/#collapse
  407. * ========================================================================
  408. * Copyright 2011-2015 Twitter, Inc.
  409. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  410. * ======================================================================== */
  411. +function ($) {
  412. 'use strict';
  413. // COLLAPSE PUBLIC CLASS DEFINITION
  414. // ================================
  415. var Collapse = function (element, options) {
  416. this.$element = $(element)
  417. this.options = $.extend({}, Collapse.DEFAULTS, options)
  418. this.$trigger = $('[data-toggle="collapse"][href="#' + element.id + '"],' +
  419. '[data-toggle="collapse"][data-target="#' + element.id + '"]')
  420. this.transitioning = null
  421. if (this.options.parent) {
  422. this.$parent = this.getParent()
  423. } else {
  424. this.addAriaAndCollapsedClass(this.$element, this.$trigger)
  425. }
  426. if (this.options.toggle) this.toggle()
  427. }
  428. Collapse.VERSION = '3.3.6'
  429. Collapse.TRANSITION_DURATION = 350
  430. Collapse.DEFAULTS = {
  431. toggle: true
  432. }
  433. Collapse.prototype.dimension = function () {
  434. var hasWidth = this.$element.hasClass('width')
  435. return hasWidth ? 'width' : 'height'
  436. }
  437. Collapse.prototype.show = function () {
  438. if (this.transitioning || this.$element.hasClass('in')) return
  439. var activesData
  440. var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing')
  441. if (actives && actives.length) {
  442. activesData = actives.data('bs.collapse')
  443. if (activesData && activesData.transitioning) return
  444. }
  445. var startEvent = $.Event('show.bs.collapse')
  446. this.$element.trigger(startEvent)
  447. if (startEvent.isDefaultPrevented()) return
  448. if (actives && actives.length) {
  449. Plugin.call(actives, 'hide')
  450. activesData || actives.data('bs.collapse', null)
  451. }
  452. var dimension = this.dimension()
  453. this.$element
  454. .removeClass('collapse')
  455. .addClass('collapsing')[dimension](0)
  456. .attr('aria-expanded', true)
  457. this.$trigger
  458. .removeClass('collapsed')
  459. .attr('aria-expanded', true)
  460. this.transitioning = 1
  461. var complete = function () {
  462. this.$element
  463. .removeClass('collapsing')
  464. .addClass('collapse in')[dimension]('')
  465. this.transitioning = 0
  466. this.$element
  467. .trigger('shown.bs.collapse')
  468. }
  469. if (!$.support.transition) return complete.call(this)
  470. var scrollSize = $.camelCase(['scroll', dimension].join('-'))
  471. this.$element
  472. .one('bsTransitionEnd', $.proxy(complete, this))
  473. .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])
  474. }
  475. Collapse.prototype.hide = function () {
  476. if (this.transitioning || !this.$element.hasClass('in')) return
  477. var startEvent = $.Event('hide.bs.collapse')
  478. this.$element.trigger(startEvent)
  479. if (startEvent.isDefaultPrevented()) return
  480. var dimension = this.dimension()
  481. this.$element[dimension](this.$element[dimension]())[0].offsetHeight
  482. this.$element
  483. .addClass('collapsing')
  484. .removeClass('collapse in')
  485. .attr('aria-expanded', false)
  486. this.$trigger
  487. .addClass('collapsed')
  488. .attr('aria-expanded', false)
  489. this.transitioning = 1
  490. var complete = function () {
  491. this.transitioning = 0
  492. this.$element
  493. .removeClass('collapsing')
  494. .addClass('collapse')
  495. .trigger('hidden.bs.collapse')
  496. }
  497. if (!$.support.transition) return complete.call(this)
  498. this.$element
  499. [dimension](0)
  500. .one('bsTransitionEnd', $.proxy(complete, this))
  501. .emulateTransitionEnd(Collapse.TRANSITION_DURATION)
  502. }
  503. Collapse.prototype.toggle = function () {
  504. this[this.$element.hasClass('in') ? 'hide' : 'show']()
  505. }
  506. Collapse.prototype.getParent = function () {
  507. return $(this.options.parent)
  508. .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]')
  509. .each($.proxy(function (i, element) {
  510. var $element = $(element)
  511. this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element)
  512. }, this))
  513. .end()
  514. }
  515. Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) {
  516. var isOpen = $element.hasClass('in')
  517. $element.attr('aria-expanded', isOpen)
  518. $trigger
  519. .toggleClass('collapsed', !isOpen)
  520. .attr('aria-expanded', isOpen)
  521. }
  522. function getTargetFromTrigger($trigger) {
  523. var href
  524. var target = $trigger.attr('data-target')
  525. || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
  526. return $(target)
  527. }
  528. // COLLAPSE PLUGIN DEFINITION
  529. // ==========================
  530. function Plugin(option) {
  531. return this.each(function () {
  532. var $this = $(this)
  533. var data = $this.data('bs.collapse')
  534. var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
  535. if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false
  536. if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
  537. if (typeof option == 'string') data[option]()
  538. })
  539. }
  540. var old = $.fn.collapse
  541. $.fn.collapse = Plugin
  542. $.fn.collapse.Constructor = Collapse
  543. // COLLAPSE NO CONFLICT
  544. // ====================
  545. $.fn.collapse.noConflict = function () {
  546. $.fn.collapse = old
  547. return this
  548. }
  549. // COLLAPSE DATA-API
  550. // =================
  551. $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) {
  552. var $this = $(this)
  553. if (!$this.attr('data-target')) e.preventDefault()
  554. var $target = getTargetFromTrigger($this)
  555. var data = $target.data('bs.collapse')
  556. var option = data ? 'toggle' : $this.data()
  557. Plugin.call($target, option)
  558. })
  559. }(jQuery);
  560. /* ========================================================================
  561. * Bootstrap: dropdown.js v3.3.6
  562. * http://getbootstrap.com/javascript/#dropdowns
  563. * ========================================================================
  564. * Copyright 2011-2015 Twitter, Inc.
  565. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  566. * ======================================================================== */
  567. +function ($) {
  568. 'use strict';
  569. // DROPDOWN CLASS DEFINITION
  570. // =========================
  571. var backdrop = '.dropdown-backdrop'
  572. var toggle = '[data-toggle="dropdown"]'
  573. var Dropdown = function (element) {
  574. $(element).on('click.bs.dropdown', this.toggle)
  575. }
  576. Dropdown.VERSION = '3.3.6'
  577. function getParent($this) {
  578. var selector = $this.attr('data-target')
  579. if (!selector) {
  580. selector = $this.attr('href')
  581. selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
  582. }
  583. var $parent = selector && $(selector)
  584. return $parent && $parent.length ? $parent : $this.parent()
  585. }
  586. function clearMenus(e) {
  587. if (e && e.which === 3) return
  588. $(backdrop).remove()
  589. $(toggle).each(function () {
  590. var $this = $(this)
  591. var $parent = getParent($this)
  592. var relatedTarget = { relatedTarget: this }
  593. if (!$parent.hasClass('open')) return
  594. if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return
  595. $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
  596. if (e.isDefaultPrevented()) return
  597. $this.attr('aria-expanded', 'false')
  598. $parent.removeClass('open').trigger($.Event('hidden.bs.dropdown', relatedTarget))
  599. })
  600. }
  601. Dropdown.prototype.toggle = function (e) {
  602. var $this = $(this)
  603. if ($this.is('.disabled, :disabled')) return
  604. var $parent = getParent($this)
  605. var isActive = $parent.hasClass('open')
  606. clearMenus()
  607. if (!isActive) {
  608. if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
  609. // if mobile we use a backdrop because click events don't delegate
  610. $(document.createElement('div'))
  611. .addClass('dropdown-backdrop')
  612. .insertAfter($(this))
  613. .on('click', clearMenus)
  614. }
  615. var relatedTarget = { relatedTarget: this }
  616. $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
  617. if (e.isDefaultPrevented()) return
  618. $this
  619. .trigger('focus')
  620. .attr('aria-expanded', 'true')
  621. $parent
  622. .toggleClass('open')
  623. .trigger($.Event('shown.bs.dropdown', relatedTarget))
  624. }
  625. return false
  626. }
  627. Dropdown.prototype.keydown = function (e) {
  628. if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return
  629. var $this = $(this)
  630. e.preventDefault()
  631. e.stopPropagation()
  632. if ($this.is('.disabled, :disabled')) return
  633. var $parent = getParent($this)
  634. var isActive = $parent.hasClass('open')
  635. if (!isActive && e.which != 27 || isActive && e.which == 27) {
  636. if (e.which == 27) $parent.find(toggle).trigger('focus')
  637. return $this.trigger('click')
  638. }
  639. var desc = ' li:not(.disabled):visible a'
  640. var $items = $parent.find('.dropdown-menu' + desc)
  641. if (!$items.length) return
  642. var index = $items.index(e.target)
  643. if (e.which == 38 && index > 0) index-- // up
  644. if (e.which == 40 && index < $items.length - 1) index++ // down
  645. if (!~index) index = 0
  646. $items.eq(index).trigger('focus')
  647. }
  648. // DROPDOWN PLUGIN DEFINITION
  649. // ==========================
  650. function Plugin(option) {
  651. return this.each(function () {
  652. var $this = $(this)
  653. var data = $this.data('bs.dropdown')
  654. if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
  655. if (typeof option == 'string') data[option].call($this)
  656. })
  657. }
  658. var old = $.fn.dropdown
  659. $.fn.dropdown = Plugin
  660. $.fn.dropdown.Constructor = Dropdown
  661. // DROPDOWN NO CONFLICT
  662. // ====================
  663. $.fn.dropdown.noConflict = function () {
  664. $.fn.dropdown = old
  665. return this
  666. }
  667. // APPLY TO STANDARD DROPDOWN ELEMENTS
  668. // ===================================
  669. $(document)
  670. .on('click.bs.dropdown.data-api', clearMenus)
  671. .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
  672. .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
  673. .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
  674. .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown)
  675. }(jQuery);
  676. /* ========================================================================
  677. * Bootstrap: modal.js v3.3.6
  678. * http://getbootstrap.com/javascript/#modals
  679. * ========================================================================
  680. * Copyright 2011-2015 Twitter, Inc.
  681. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  682. * ======================================================================== */
  683. +function ($) {
  684. 'use strict';
  685. // MODAL CLASS DEFINITION
  686. // ======================
  687. var Modal = function (element, options) {
  688. this.options = options
  689. this.$body = $(document.body)
  690. this.$element = $(element)
  691. this.$dialog = this.$element.find('.modal-dialog')
  692. this.$backdrop = null
  693. this.isShown = null
  694. this.originalBodyPad = null
  695. this.scrollbarWidth = 0
  696. this.ignoreBackdropClick = false
  697. if (this.options.remote) {
  698. this.$element
  699. .find('.modal-content')
  700. .load(this.options.remote, $.proxy(function () {
  701. this.$element.trigger('loaded.bs.modal')
  702. }, this))
  703. }
  704. }
  705. Modal.VERSION = '3.3.6'
  706. Modal.TRANSITION_DURATION = 300
  707. Modal.BACKDROP_TRANSITION_DURATION = 150
  708. Modal.DEFAULTS = {
  709. backdrop: true,
  710. keyboard: true,
  711. show: true
  712. }
  713. Modal.prototype.toggle = function (_relatedTarget) {
  714. return this.isShown ? this.hide() : this.show(_relatedTarget)
  715. }
  716. Modal.prototype.show = function (_relatedTarget) {
  717. var that = this
  718. var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
  719. this.$element.trigger(e)
  720. if (this.isShown || e.isDefaultPrevented()) return
  721. this.isShown = true
  722. this.checkScrollbar()
  723. this.setScrollbar()
  724. this.$body.addClass('modal-open')
  725. this.escape()
  726. this.resize()
  727. this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
  728. this.$dialog.on('mousedown.dismiss.bs.modal', function () {
  729. that.$element.one('mouseup.dismiss.bs.modal', function (e) {
  730. if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true
  731. })
  732. })
  733. this.backdrop(function () {
  734. var transition = $.support.transition && that.$element.hasClass('fade')
  735. if (!that.$element.parent().length) {
  736. that.$element.appendTo(that.$body) // don't move modals dom position
  737. }
  738. that.$element
  739. .show()
  740. .scrollTop(0)
  741. that.adjustDialog()
  742. if (transition) {
  743. that.$element[0].offsetWidth // force reflow
  744. }
  745. that.$element.addClass('in')
  746. that.enforceFocus()
  747. var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
  748. transition ?
  749. that.$dialog // wait for modal to slide in
  750. .one('bsTransitionEnd', function () {
  751. that.$element.trigger('focus').trigger(e)
  752. })
  753. .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
  754. that.$element.trigger('focus').trigger(e)
  755. })
  756. }
  757. Modal.prototype.hide = function (e) {
  758. if (e) e.preventDefault()
  759. e = $.Event('hide.bs.modal')
  760. this.$element.trigger(e)
  761. if (!this.isShown || e.isDefaultPrevented()) return
  762. this.isShown = false
  763. this.escape()
  764. this.resize()
  765. $(document).off('focusin.bs.modal')
  766. this.$element
  767. .removeClass('in')
  768. .off('click.dismiss.bs.modal')
  769. .off('mouseup.dismiss.bs.modal')
  770. this.$dialog.off('mousedown.dismiss.bs.modal')
  771. $.support.transition && this.$element.hasClass('fade') ?
  772. this.$element
  773. .one('bsTransitionEnd', $.proxy(this.hideModal, this))
  774. .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
  775. this.hideModal()
  776. }
  777. Modal.prototype.enforceFocus = function () {
  778. $(document)
  779. .off('focusin.bs.modal') // guard against infinite focus loop
  780. .on('focusin.bs.modal', $.proxy(function (e) {
  781. if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
  782. this.$element.trigger('focus')
  783. }
  784. }, this))
  785. }
  786. Modal.prototype.escape = function () {
  787. if (this.isShown && this.options.keyboard) {
  788. this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {
  789. e.which == 27 && this.hide()
  790. }, this))
  791. } else if (!this.isShown) {
  792. this.$element.off('keydown.dismiss.bs.modal')
  793. }
  794. }
  795. Modal.prototype.resize = function () {
  796. if (this.isShown) {
  797. $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this))
  798. } else {
  799. $(window).off('resize.bs.modal')
  800. }
  801. }
  802. Modal.prototype.hideModal = function () {
  803. var that = this
  804. this.$element.hide()
  805. this.backdrop(function () {
  806. that.$body.removeClass('modal-open')
  807. that.resetAdjustments()
  808. that.resetScrollbar()
  809. that.$element.trigger('hidden.bs.modal')
  810. })
  811. }
  812. Modal.prototype.removeBackdrop = function () {
  813. this.$backdrop && this.$backdrop.remove()
  814. this.$backdrop = null
  815. }
  816. Modal.prototype.backdrop = function (callback) {
  817. var that = this
  818. var animate = this.$element.hasClass('fade') ? 'fade' : ''
  819. if (this.isShown && this.options.backdrop) {
  820. var doAnimate = $.support.transition && animate
  821. this.$backdrop = $(document.createElement('div'))
  822. .addClass('modal-backdrop ' + animate)
  823. .appendTo(this.$body)
  824. this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
  825. if (this.ignoreBackdropClick) {
  826. this.ignoreBackdropClick = false
  827. return
  828. }
  829. if (e.target !== e.currentTarget) return
  830. this.options.backdrop == 'static'
  831. ? this.$element[0].focus()
  832. : this.hide()
  833. }, this))
  834. if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
  835. this.$backdrop.addClass('in')
  836. if (!callback) return
  837. doAnimate ?
  838. this.$backdrop
  839. .one('bsTransitionEnd', callback)
  840. .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
  841. callback()
  842. } else if (!this.isShown && this.$backdrop) {
  843. this.$backdrop.removeClass('in')
  844. var callbackRemove = function () {
  845. that.removeBackdrop()
  846. callback && callback()
  847. }
  848. $.support.transition && this.$element.hasClass('fade') ?
  849. this.$backdrop
  850. .one('bsTransitionEnd', callbackRemove)
  851. .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
  852. callbackRemove()
  853. } else if (callback) {
  854. callback()
  855. }
  856. }
  857. // these following methods are used to handle overflowing modals
  858. Modal.prototype.handleUpdate = function () {
  859. this.adjustDialog()
  860. }
  861. Modal.prototype.adjustDialog = function () {
  862. var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight
  863. this.$element.css({
  864. paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
  865. paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''
  866. })
  867. }
  868. Modal.prototype.resetAdjustments = function () {
  869. this.$element.css({
  870. paddingLeft: '',
  871. paddingRight: ''
  872. })
  873. }
  874. Modal.prototype.checkScrollbar = function () {
  875. var fullWindowWidth = window.innerWidth
  876. if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8
  877. var documentElementRect = document.documentElement.getBoundingClientRect()
  878. fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left)
  879. }
  880. this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth
  881. this.scrollbarWidth = this.measureScrollbar()
  882. }
  883. Modal.prototype.setScrollbar = function () {
  884. var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
  885. this.originalBodyPad = document.body.style.paddingRight || ''
  886. if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
  887. }
  888. Modal.prototype.resetScrollbar = function () {
  889. this.$body.css('padding-right', this.originalBodyPad)
  890. }
  891. Modal.prototype.measureScrollbar = function () { // thx walsh
  892. var scrollDiv = document.createElement('div')
  893. scrollDiv.className = 'modal-scrollbar-measure'
  894. this.$body.append(scrollDiv)
  895. var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth
  896. this.$body[0].removeChild(scrollDiv)
  897. return scrollbarWidth
  898. }
  899. // MODAL PLUGIN DEFINITION
  900. // =======================
  901. function Plugin(option, _relatedTarget) {
  902. return this.each(function () {
  903. var $this = $(this)
  904. var data = $this.data('bs.modal')
  905. var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
  906. if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
  907. if (typeof option == 'string') data[option](_relatedTarget)
  908. else if (options.show) data.show(_relatedTarget)
  909. })
  910. }
  911. var old = $.fn.modal
  912. $.fn.modal = Plugin
  913. $.fn.modal.Constructor = Modal
  914. // MODAL NO CONFLICT
  915. // =================
  916. $.fn.modal.noConflict = function () {
  917. $.fn.modal = old
  918. return this
  919. }
  920. // MODAL DATA-API
  921. // ==============
  922. $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
  923. var $this = $(this)
  924. var href = $this.attr('href')
  925. var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7
  926. var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
  927. if ($this.is('a')) e.preventDefault()
  928. $target.one('show.bs.modal', function (showEvent) {
  929. if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown
  930. $target.one('hidden.bs.modal', function () {
  931. $this.is(':visible') && $this.trigger('focus')
  932. })
  933. })
  934. Plugin.call($target, option, this)
  935. })
  936. }(jQuery);
  937. /* ========================================================================
  938. * Bootstrap: tooltip.js v3.3.6
  939. * http://getbootstrap.com/javascript/#tooltip
  940. * Inspired by the original jQuery.tipsy by Jason Frame
  941. * ========================================================================
  942. * Copyright 2011-2015 Twitter, Inc.
  943. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  944. * ======================================================================== */
  945. +function ($) {
  946. 'use strict';
  947. // TOOLTIP PUBLIC CLASS DEFINITION
  948. // ===============================
  949. var Tooltip = function (element, options) {
  950. this.type = null
  951. this.options = null
  952. this.enabled = null
  953. this.timeout = null
  954. this.hoverState = null
  955. this.$element = null
  956. this.inState = null
  957. this.init('tooltip', element, options)
  958. }
  959. Tooltip.VERSION = '3.3.6'
  960. Tooltip.TRANSITION_DURATION = 150
  961. Tooltip.DEFAULTS = {
  962. animation: true,
  963. placement: 'top',
  964. selector: false,
  965. template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
  966. trigger: 'hover focus',
  967. title: '',
  968. delay: 0,
  969. html: false,
  970. container: false,
  971. viewport: {
  972. selector: 'body',
  973. padding: 0
  974. }
  975. }
  976. Tooltip.prototype.init = function (type, element, options) {
  977. this.enabled = true
  978. this.type = type
  979. this.$element = $(element)
  980. this.options = this.getOptions(options)
  981. this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport))
  982. this.inState = { click: false, hover: false, focus: false }
  983. if (this.$element[0] instanceof document.constructor && !this.options.selector) {
  984. throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!')
  985. }
  986. var triggers = this.options.trigger.split(' ')
  987. for (var i = triggers.length; i--;) {
  988. var trigger = triggers[i]
  989. if (trigger == 'click') {
  990. this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
  991. } else if (trigger != 'manual') {
  992. var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin'
  993. var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
  994. this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
  995. this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
  996. }
  997. }
  998. this.options.selector ?
  999. (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
  1000. this.fixTitle()
  1001. }
  1002. Tooltip.prototype.getDefaults = function () {
  1003. return Tooltip.DEFAULTS
  1004. }
  1005. Tooltip.prototype.getOptions = function (options) {
  1006. options = $.extend({}, this.getDefaults(), this.$element.data(), options)
  1007. if (options.delay && typeof options.delay == 'number') {
  1008. options.delay = {
  1009. show: options.delay,
  1010. hide: options.delay
  1011. }
  1012. }
  1013. return options
  1014. }
  1015. Tooltip.prototype.getDelegateOptions = function () {
  1016. var options = {}
  1017. var defaults = this.getDefaults()
  1018. this._options && $.each(this._options, function (key, value) {
  1019. if (defaults[key] != value) options[key] = value
  1020. })
  1021. return options
  1022. }
  1023. Tooltip.prototype.enter = function (obj) {
  1024. var self = obj instanceof this.constructor ?
  1025. obj : $(obj.currentTarget).data('bs.' + this.type)
  1026. if (!self) {
  1027. self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
  1028. $(obj.currentTarget).data('bs.' + this.type, self)
  1029. }
  1030. if (obj instanceof $.Event) {
  1031. self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true
  1032. }
  1033. if (self.tip().hasClass('in') || self.hoverState == 'in') {
  1034. self.hoverState = 'in'
  1035. return
  1036. }
  1037. clearTimeout(self.timeout)
  1038. self.hoverState = 'in'
  1039. if (!self.options.delay || !self.options.delay.show) return self.show()
  1040. self.timeout = setTimeout(function () {
  1041. if (self.hoverState == 'in') self.show()
  1042. }, self.options.delay.show)
  1043. }
  1044. Tooltip.prototype.isInStateTrue = function () {
  1045. for (var key in this.inState) {
  1046. if (this.inState[key]) return true
  1047. }
  1048. return false
  1049. }
  1050. Tooltip.prototype.leave = function (obj) {
  1051. var self = obj instanceof this.constructor ?
  1052. obj : $(obj.currentTarget).data('bs.' + this.type)
  1053. if (!self) {
  1054. self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
  1055. $(obj.currentTarget).data('bs.' + this.type, self)
  1056. }
  1057. if (obj instanceof $.Event) {
  1058. self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false
  1059. }
  1060. if (self.isInStateTrue()) return
  1061. clearTimeout(self.timeout)
  1062. self.hoverState = 'out'
  1063. if (!self.options.delay || !self.options.delay.hide) return self.hide()
  1064. self.timeout = setTimeout(function () {
  1065. if (self.hoverState == 'out') self.hide()
  1066. }, self.options.delay.hide)
  1067. }
  1068. Tooltip.prototype.show = function () {
  1069. var e = $.Event('show.bs.' + this.type)
  1070. if (this.hasContent() && this.enabled) {
  1071. this.$element.trigger(e)
  1072. var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0])
  1073. if (e.isDefaultPrevented() || !inDom) return
  1074. var that = this
  1075. var $tip = this.tip()
  1076. var tipId = this.getUID(this.type)
  1077. this.setContent()
  1078. $tip.attr('id', tipId)
  1079. this.$element.attr('aria-describedby', tipId)
  1080. if (this.options.animation) $tip.addClass('fade')
  1081. var placement = typeof this.options.placement == 'function' ?
  1082. this.options.placement.call(this, $tip[0], this.$element[0]) :
  1083. this.options.placement
  1084. var autoToken = /\s?auto?\s?/i
  1085. var autoPlace = autoToken.test(placement)
  1086. if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
  1087. $tip
  1088. .detach()
  1089. .css({ top: 0, left: 0, display: 'block' })
  1090. .addClass(placement)
  1091. .data('bs.' + this.type, this)
  1092. this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
  1093. this.$element.trigger('inserted.bs.' + this.type)
  1094. var pos = this.getPosition()
  1095. var actualWidth = $tip[0].offsetWidth
  1096. var actualHeight = $tip[0].offsetHeight
  1097. if (autoPlace) {
  1098. var orgPlacement = placement
  1099. var viewportDim = this.getPosition(this.$viewport)
  1100. placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top' :
  1101. placement == 'top' && pos.top - actualHeight < viewportDim.top ? 'bottom' :
  1102. placement == 'right' && pos.right + actualWidth > viewportDim.width ? 'left' :
  1103. placement == 'left' && pos.left - actualWidth < viewportDim.left ? 'right' :
  1104. placement
  1105. $tip
  1106. .removeClass(orgPlacement)
  1107. .addClass(placement)
  1108. }
  1109. var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
  1110. this.applyPlacement(calculatedOffset, placement)
  1111. var complete = function () {
  1112. var prevHoverState = that.hoverState
  1113. that.$element.trigger('shown.bs.' + that.type)
  1114. that.hoverState = null
  1115. if (prevHoverState == 'out') that.leave(that)
  1116. }
  1117. $.support.transition && this.$tip.hasClass('fade') ?
  1118. $tip
  1119. .one('bsTransitionEnd', complete)
  1120. .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
  1121. complete()
  1122. }
  1123. }
  1124. Tooltip.prototype.applyPlacement = function (offset, placement) {
  1125. var $tip = this.tip()
  1126. var width = $tip[0].offsetWidth
  1127. var height = $tip[0].offsetHeight
  1128. // manually read margins because getBoundingClientRect includes difference
  1129. var marginTop = parseInt($tip.css('margin-top'), 10)
  1130. var marginLeft = parseInt($tip.css('margin-left'), 10)
  1131. // we must check for NaN for ie 8/9
  1132. if (isNaN(marginTop)) marginTop = 0
  1133. if (isNaN(marginLeft)) marginLeft = 0
  1134. offset.top += marginTop
  1135. offset.left += marginLeft
  1136. // $.fn.offset doesn't round pixel values
  1137. // so we use setOffset directly with our own function B-0
  1138. $.offset.setOffset($tip[0], $.extend({
  1139. using: function (props) {
  1140. $tip.css({
  1141. top: Math.round(props.top),
  1142. left: Math.round(props.left)
  1143. })
  1144. }
  1145. }, offset), 0)
  1146. $tip.addClass('in')
  1147. // check to see if placing tip in new offset caused the tip to resize itself
  1148. var actualWidth = $tip[0].offsetWidth
  1149. var actualHeight = $tip[0].offsetHeight
  1150. if (placement == 'top' && actualHeight != height) {
  1151. offset.top = offset.top + height - actualHeight
  1152. }
  1153. var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)
  1154. if (delta.left) offset.left += delta.left
  1155. else offset.top += delta.top
  1156. var isVertical = /top|bottom/.test(placement)
  1157. var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight
  1158. var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight'
  1159. $tip.offset(offset)
  1160. this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical)
  1161. }
  1162. Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) {
  1163. this.arrow()
  1164. .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%')
  1165. .css(isVertical ? 'top' : 'left', '')
  1166. }
  1167. Tooltip.prototype.setContent = function () {
  1168. var $tip = this.tip()
  1169. var title = this.getTitle()
  1170. $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
  1171. $tip.removeClass('fade in top bottom left right')
  1172. }
  1173. Tooltip.prototype.hide = function (callback) {
  1174. var that = this
  1175. var $tip = $(this.$tip)
  1176. var e = $.Event('hide.bs.' + this.type)
  1177. function complete() {
  1178. if (that.hoverState != 'in') $tip.detach()
  1179. that.$element
  1180. .removeAttr('aria-describedby')
  1181. .trigger('hidden.bs.' + that.type)
  1182. callback && callback()
  1183. }
  1184. this.$element.trigger(e)
  1185. if (e.isDefaultPrevented()) return
  1186. $tip.removeClass('in')
  1187. $.support.transition && $tip.hasClass('fade') ?
  1188. $tip
  1189. .one('bsTransitionEnd', complete)
  1190. .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :
  1191. complete()
  1192. this.hoverState = null
  1193. return this
  1194. }
  1195. Tooltip.prototype.fixTitle = function () {
  1196. var $e = this.$element
  1197. if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') {
  1198. $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
  1199. }
  1200. }
  1201. Tooltip.prototype.hasContent = function () {
  1202. return this.getTitle()
  1203. }
  1204. Tooltip.prototype.getPosition = function ($element) {
  1205. $element = $element || this.$element
  1206. var el = $element[0]
  1207. var isBody = el.tagName == 'BODY'
  1208. var elRect = el.getBoundingClientRect()
  1209. if (elRect.width == null) {
  1210. // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093
  1211. elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top })
  1212. }
  1213. var elOffset = isBody ? { top: 0, left: 0 } : $element.offset()
  1214. var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() }
  1215. var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null
  1216. return $.extend({}, elRect, scroll, outerDims, elOffset)
  1217. }
  1218. Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
  1219. return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } :
  1220. placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
  1221. placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
  1222. /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
  1223. }
  1224. Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) {
  1225. var delta = { top: 0, left: 0 }
  1226. if (!this.$viewport) return delta
  1227. var viewportPadding = this.options.viewport && this.options.viewport.padding || 0
  1228. var viewportDimensions = this.getPosition(this.$viewport)
  1229. if (/right|left/.test(placement)) {
  1230. var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll
  1231. var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight
  1232. if (topEdgeOffset < viewportDimensions.top) { // top overflow
  1233. delta.top = viewportDimensions.top - topEdgeOffset
  1234. } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow
  1235. delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset
  1236. }
  1237. } else {
  1238. var leftEdgeOffset = pos.left - viewportPadding
  1239. var rightEdgeOffset = pos.left + viewportPadding + actualWidth
  1240. if (leftEdgeOffset < viewportDimensions.left) { // left overflow
  1241. delta.left = viewportDimensions.left - leftEdgeOffset
  1242. } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow
  1243. delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset
  1244. }
  1245. }
  1246. return delta
  1247. }
  1248. Tooltip.prototype.getTitle = function () {
  1249. var title
  1250. var $e = this.$element
  1251. var o = this.options
  1252. title = $e.attr('data-original-title')
  1253. || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
  1254. return title
  1255. }
  1256. Tooltip.prototype.getUID = function (pref