We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f55fdac commit e0dc89fCopy full SHA for e0dc89f
js/render-facade.js
@@ -6,6 +6,9 @@
6
7
function initActionsButtons(v) {
8
if($('a.visualizer-action[data-visualizer-type=copy]').length > 0) {
9
+ $('a.visualizer-action[data-visualizer-type=copy]').on('click', function(e) {
10
+ e.preventDefault();
11
+ });
12
var clipboard = new Clipboard('a.visualizer-action[data-visualizer-type=copy]'); // jshint ignore:line
13
clipboard.on('success', function(e) {
14
window.alert(v.i10n['copied']);
0 commit comments