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

171 lines
5.3 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/)
2021-01-07 11:12:53 +01:00
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 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
*/
/* global ClipboardJS: false, anchors: false, bootstrap: 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
// Tooltip and popover demos
2020-03-28 17:05:11 +01:00
document.querySelectorAll('.tooltip-demo')
.forEach(function (tooltip) {
new bootstrap.Tooltip(tooltip, {
selector: '[data-bs-toggle="tooltip"]'
2018-11-20 22:35:11 +01:00
})
})
2015-08-13 04:59:55 +02:00
document.querySelectorAll('[data-bs-toggle="popover"]')
.forEach(function (popover) {
new bootstrap.Popover(popover)
})
2018-11-20 22:35:11 +01:00
2020-11-29 15:58:44 +01:00
var toastPlacement = document.getElementById('toastPlacement')
if (toastPlacement) {
document.getElementById('selectToastPlacement').addEventListener('change', function () {
if (!toastPlacement.dataset.originalClass) {
toastPlacement.dataset.originalClass = toastPlacement.className
}
toastPlacement.className = toastPlacement.dataset.originalClass + ' ' + this.value
})
}
document.querySelectorAll('.bd-example .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
var toastTrigger = document.getElementById('liveToastBtn')
var toastLiveExample = document.getElementById('liveToast')
if (toastTrigger) {
toastTrigger.addEventListener('click', function () {
var toast = new bootstrap.Toast(toastLiveExample)
toast.show()
})
}
var alertPlaceholder = document.getElementById('liveAlertPlaceholder')
var alertTrigger = document.getElementById('liveAlertBtn')
function alert(message, type) {
var wrapper = document.createElement('div')
wrapper.innerHTML = '<div class="alert alert-' + type + ' alert-dismissible" role="alert">' + message + '<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button></div>'
alertPlaceholder.append(wrapper)
}
if (alertTrigger) {
alertTrigger.addEventListener('click', function () {
alert('Nice, you triggered this alert message!', 'success')
})
}
// Demos within modals
2020-03-28 17:05:11 +01:00
document.querySelectorAll('.tooltip-test')
.forEach(function (tooltip) {
new bootstrap.Tooltip(tooltip)
})
2015-08-13 04:59:55 +02:00
2020-03-28 17:05:11 +01:00
document.querySelectorAll('.popover-test')
.forEach(function (popover) {
new bootstrap.Popover(popover)
})
// Indeterminate checkbox example
2020-03-28 17:05:11 +01:00
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
2020-03-28 17:05:11 +01:00
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) {
// Button that triggered the modal
var button = event.relatedTarget
// Extract info from data-bs-* attributes
var recipient = button.getAttribute('data-bs-whatever')
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.textContent = 'New message to ' + recipient
modalBodyInput.value = recipient
})
}
// 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>'
document.querySelectorAll('div.highlight')
.forEach(function (element) {
element.insertAdjacentHTML('beforebegin', btnHtml)
})
2018-07-19 18:48:52 +02:00
2020-03-28 17:05:11 +01:00
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-bs-original-title', 'Copied!')
tooltipBtn.show()
e.trigger.setAttribute('data-bs-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-bs-original-title', fallbackMsg)
tooltipBtn.show()
2015-08-13 04:59:55 +02:00
e.trigger.setAttribute('data-bs-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')
2019-02-26 12:20:34 +01:00
})()