aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/_global/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/Resources/static/themes/_global/index.js')
-rw-r--r--app/Resources/static/themes/_global/index.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/Resources/static/themes/_global/index.js b/app/Resources/static/themes/_global/index.js
index 9ad96fc0..315fc0ad 100644
--- a/app/Resources/static/themes/_global/index.js
+++ b/app/Resources/static/themes/_global/index.js
@@ -4,6 +4,8 @@ import $ from 'jquery';
4/* Annotations */ 4/* Annotations */
5import annotator from 'annotator'; 5import annotator from 'annotator';
6 6
7import ClipboardJS from 'clipboard';
8
7/* Fonts */ 9/* Fonts */
8import 'material-design-icons-iconfont/dist/material-design-icons.css'; 10import 'material-design-icons-iconfont/dist/material-design-icons.css';
9import 'lato-font/css/lato-font.css'; 11import 'lato-font/css/lato-font.css';
@@ -107,4 +109,10 @@ $(document).ready(() => {
107 $('#user_emailTwoFactor').on('change', () => { 109 $('#user_emailTwoFactor').on('change', () => {
108 $('#user_googleTwoFactor').prop('checked', false); 110 $('#user_googleTwoFactor').prop('checked', false);
109 }); 111 });
112
113 // handle copy to clipboard for developer stuff
114 const clipboard = new ClipboardJS('.btn');
115 clipboard.on('success', (e) => {
116 e.clearSelection();
117 });
110}); 118});