bootstrap 5 class updates

This commit is contained in:
checktheroads
2021-04-13 21:51:12 -07:00
parent 21d31b5747
commit d1d2ad6a5c
33 changed files with 611 additions and 530 deletions

View File

@@ -0,0 +1,8 @@
import Clipboard from 'clipboard';
import { getElements } from './util';
export function initClipboard() {
for (const element of getElements('a.copy-token', 'button.copy-secret')) {
new Clipboard(element);
}
}