0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/site/assets/js/application.js

149 lines
4.6 KiB
JavaScript
Raw Normal View History

2015-08-13 04:59:55 +02:00
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT
// IT'S ALL JUST JUNK FOR OUR DOCS!
// ++++++++++++++++++++++++++++++++++++++++++
/*!
* JavaScript for Bootstrap's docs (https://getbootstrap.com/)
2020-01-02 10:34:48 +01:00
* Copyright 2011-2020 The Bootstrap Authors
* Copyright 2011-2020 Twitter, Inc.
* Licensed under the Creative Commons Attribution 3.0 Unported License.
* For details, see https://creativecommons.org/licenses/by/3.0/.
2015-08-13 04:59:55 +02:00
*/
2018-07-19 18:48:52 +02:00
/* global ClipboardJS: false, anchors: false, bootstrap: false, bsCustomFileInput: false */
2015-08-13 04:59:55 +02:00
2018-07-19 18:48:52 +02:00
(function () {
'use strict'
2015-08-13 04:59:55 +02:00
function makeArray(list) {
return [].slice.call(list)
}
// Tooltip and popover demos
makeArray(document.querySelectorAll('.tooltip-demo'))
.forEach(function (tooltip) {
new bootstrap.Tooltip(tooltip, {
selector: '[data-toggle="tooltip"]'
2018-11-20 22:35:11 +01:00
})
})
2015-08-13 04:59:55 +02:00
makeArray(document.querySelectorAll('[data-toggle="popover"]'))
.forEach(function (popover) {
new bootstrap.Popover(popover)
})
2018-11-20 22:35:11 +01:00
makeArray(document.querySelectorAll('.toast'))
.forEach(function (toastNode) {
var toast = new bootstrap.Toast(toastNode, {
autohide: false
2018-08-23 21:06:35 +02:00
})
toast.show()
})
2018-07-19 18:48:52 +02:00
// Demos within modals
makeArray(document.querySelectorAll('.tooltip-test'))
.forEach(function (tooltip) {
new bootstrap.Tooltip(tooltip)
})
2015-08-13 04:59:55 +02:00
makeArray(document.querySelectorAll('.popover-test'))
.forEach(function (popover) {
new bootstrap.Popover(popover)
})
// Indeterminate checkbox example
makeArray(document.querySelectorAll('.bd-example-indeterminate [type="checkbox"]'))
.forEach(function (checkbox) {
checkbox.indeterminate = true
})
2015-08-18 06:21:39 +02:00
// Disable empty links in docs examples
makeArray(document.querySelectorAll('.bd-content [href="#"]'))
.forEach(function (link) {
link.addEventListener('click', function (e) {
e.preventDefault()
})
})
2018-07-19 18:48:52 +02:00
// Modal relatedTarget demo
var exampleModal = document.getElementById('exampleModal')
if (exampleModal) {
exampleModal.addEventListener('show.bs.modal', function (event) {
var button = event.relatedTarget // Button that triggered the modal
var recipient = button.getAttribute('data-whatever') // Extract info from data-* attributes
2018-07-19 18:48:52 +02:00
// Update the modal's content.
var modalTitle = exampleModal.querySelector('.modal-title')
var modalBodyInput = exampleModal.querySelector('.modal-body input')
modalTitle.innerHTML = 'New message to ' + recipient
modalBodyInput.value = recipient
})
}
// Activate animated progress bar
var btnToggleAnimatedProgress = document.getElementById('btnToggleAnimatedProgress')
if (btnToggleAnimatedProgress) {
btnToggleAnimatedProgress.addEventListener('click', function () {
btnToggleAnimatedProgress.parentNode
.querySelector('.progress-bar-striped')
.classList
.toggle('progress-bar-animated')
})
}
2016-12-30 00:50:18 +01:00
// Insert copy to clipboard button before .highlight
var btnHtml = '<div class="bd-clipboard"><button type="button" class="btn-clipboard" title="Copy to clipboard">Copy</button></div>'
makeArray(document.querySelectorAll('figure.highlight, div.highlight'))
.forEach(function (element) {
element.insertAdjacentHTML('beforebegin', btnHtml)
})
2018-07-19 18:48:52 +02:00
makeArray(document.querySelectorAll('.btn-clipboard'))
.forEach(function (btn) {
var tooltipBtn = new bootstrap.Tooltip(btn)
2018-07-19 18:48:52 +02:00
btn.addEventListener('mouseleave', function () {
// Explicitly hide tooltip, since after clicking it remains
// focused (as it's a button), so tooltip would otherwise
// remain visible until focus is moved away
tooltipBtn.hide()
2018-07-19 18:48:52 +02:00
})
})
var clipboard = new ClipboardJS('.btn-clipboard', {
target: function (trigger) {
return trigger.parentNode.nextElementSibling
}
})
2018-07-19 18:48:52 +02:00
clipboard.on('success', function (e) {
2019-07-28 15:24:46 +02:00
var tooltipBtn = bootstrap.Tooltip.getInstance(e.trigger)
e.trigger.setAttribute('data-original-title', 'Copied!')
tooltipBtn.show()
e.trigger.setAttribute('data-original-title', 'Copy to clipboard')
e.clearSelection()
})
2018-07-19 18:48:52 +02:00
clipboard.on('error', function (e) {
2019-12-24 17:23:17 +01:00
var modifierKey = /mac/i.test(navigator.userAgent) ? '\u2318' : 'Ctrl-'
var fallbackMsg = 'Press ' + modifierKey + 'C to copy'
2019-07-28 15:24:46 +02:00
var tooltipBtn = bootstrap.Tooltip.getInstance(e.trigger)
e.trigger.setAttribute('data-original-title', fallbackMsg)
tooltipBtn.show()
2015-08-13 04:59:55 +02:00
e.trigger.setAttribute('data-original-title', 'Copy to clipboard')
})
2018-07-19 18:48:52 +02:00
anchors.options = {
icon: '#'
}
anchors.add('.bd-content > h2, .bd-content > h3, .bd-content > h4, .bd-content > h5')
bsCustomFileInput.init()
2019-02-26 12:20:34 +01:00
})()