mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-17 05:00:24 +00:00
code-examples.js: switch to firstElementChild (#37570)
This ensures that we will get the first element child and not text
This commit is contained in:
parent
d16efb79b6
commit
18fec8bf36
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@
|
|||
})
|
||||
|
||||
clipboard.on('success', event => {
|
||||
const iconFirstChild = event.trigger.querySelector('.bi').firstChild
|
||||
const iconFirstChild = event.trigger.querySelector('.bi').firstElementChild
|
||||
const tooltipBtn = bootstrap.Tooltip.getInstance(event.trigger)
|
||||
const namespace = 'http://www.w3.org/1999/xlink'
|
||||
const originalXhref = iconFirstChild.getAttributeNS(namespace, 'href')
|
||||
|
|
|
|||
Loading…
Reference in a new issue