1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

Copy client info to clipboard

From the listing page and the create summary page, you can now copy client info to the clipboard using dedicated buttons.
This commit is contained in:
Jeremy Benoist 2019-07-09 13:22:50 +02:00
parent ff8fe22f2e
commit 66fa0c26ab
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
20 changed files with 91 additions and 10 deletions

View file

@ -4,6 +4,8 @@ import $ from 'jquery';
/* Annotations */
import annotator from 'annotator';
import ClipboardJS from 'clipboard';
/* Fonts */
import 'material-design-icons-iconfont/dist/material-design-icons.css';
import 'lato-font/css/lato-font.css';
@ -107,4 +109,12 @@ $(document).ready(() => {
$('#user_emailTwoFactor').on('change', () => {
$('#user_googleTwoFactor').prop('checked', false);
});
// handle copy to clipboard for developer stuff
const clipboard = new ClipboardJS('.btn');
clipboard.on('success', (e) => {
console.info(e.text);
e.clearSelection();
});
});