Skip to content

Commit 172b868

Browse files
committed
reverse order of attributes on copy icon in source toolbox
1 parent 1812f8a commit 172b868

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/06-copy-to-clipboard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040
copy.appendChild(svg)
4141
} else { // img
4242
var img = document.createElement('img')
43+
img.src = window.uiRootPath + '/img/octicons-16.svg#view-clippy'
4344
img.alt = 'copy icon'
4445
img.className = 'copy-icon'
45-
img.src = window.uiRootPath + '/img/octicons-16.svg#view-clippy'
4646
copy.appendChild(img)
4747
}
4848
;(toast = document.createElement('span')).className = 'copy-toast'

0 commit comments

Comments
 (0)