Skip to content

Commit 4ac3322

Browse files
committed
All: Fix the copy to clipboard button
The Clipboard.js library often doesn't really copy to clipboard despite reporting it completed successfully. Instead, this commit switches from it to a polyfill to a native clipboard async API that works (tested in Chrome 81, Firefox 75 & Safari 13.1). Fixes #49
1 parent fde0aab commit 4ac3322

File tree

4 files changed

+28
-32
lines changed

4 files changed

+28
-32
lines changed

themes/codeorigin.jquery.com/page.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
wp_enqueue_style('sri-modal', get_template_directory_uri() . '/css/sri-modal.css');
44

55
wp_enqueue_script('jquery-ui', 'https://code.jquery.com/ui/1.11.4/jquery-ui.min.js');
6-
wp_enqueue_script('clipboard', get_template_directory_uri() . '/js/clipboard.1.5.5.min.js');
6+
wp_enqueue_script('clipboard-polyfill', get_template_directory_uri() . '/js/clipboard-polyfill.js');
77
wp_enqueue_script('sri-modal', get_template_directory_uri() . '/js/sri-modal.js');
88
?>
99

themes/jquery/js/clipboard-polyfill.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

themes/jquery/js/clipboard.1.5.5.min.js

-7
This file was deleted.

themes/jquery/js/sri-modal.js

+25-24
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
$(document).ready(function() {
1+
$( function() {
22
// Store modal templates
3-
var modalTemplate = $( "#sri-modal-template" )[ 0 ].outerHTML,
4-
clipboard;
3+
var modalTemplate = $( "#sri-modal-template" )[ 0 ].outerHTML;
54

65
// Show modal on click
76
$( "body" ).on( "click", ".open-sri-modal", function( event ) {
@@ -23,32 +22,34 @@ $(document).ready(function() {
2322
}
2423
} );
2524

26-
$('.sri-modal-copy-btn').tooltip();
25+
$('.sri-modal-copy-btn')
26+
.tooltip()
27+
.on( "click", function() {
28+
var buttonElem = $( this );
29+
clipboard
30+
.writeText( buttonElem.attr( "data-clipboard-text" ) )
31+
.then( function() {
32+
buttonElem
33+
.tooltip( "option", "content", "Copied!" )
34+
.one( "mouseout", function() {
35+
buttonElem.tooltip( "option", "content", "Copy to clipboard!" );
36+
} );
37+
} )
38+
.catch( function() {
39+
buttonElem
40+
.tooltip( "option", "content", "Copying to clipboard failed!" )
41+
.one( "mouseout", function() {
42+
buttonElem.tooltip( "option", "content", "Copy to clipboard!" );
43+
} );
44+
} );
45+
} );
2746
event.preventDefault();
2847
} );
2948

3049
// Helper functions
3150
function replace ( string, values ) {
3251
return string.replace( /\{\{([^}]+)}}/g, function( _, key ) {
3352
return values[key];
34-
});
53+
} );
3554
}
36-
37-
clipboard = new Clipboard( "[data-clipboard-text]" );
38-
39-
clipboard.on( "success", function( e ) {
40-
$( e.trigger )
41-
.tooltip( "option", "content", "Copied!" )
42-
.one( "mouseout", function() {
43-
$( this ).tooltip( "option", "content", "Copy to clipboard!" );
44-
} );
45-
} );
46-
47-
clipboard.on( "error", function( e ) {
48-
$( e.trigger )
49-
.tooltip( "option", "content", "Press Ctrl+C to copy!" )
50-
.one( "mouseout", function() {
51-
$( this ).tooltip( "option", "content", "Copy to clipboard!" );
52-
} );
53-
} );
54-
});
55+
} );

0 commit comments

Comments
 (0)