Skip to content

Commit

Permalink
chore: remove the cdn script (#341).
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Mar 10, 2022
1 parent 432b3ab commit b709569
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion template/details.ejs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<%- include('partial/header'); %>
<%- include('widget/search',{type: "list"}); %>
<script src="https://unpkg.com/@uiw/copy-to-clipboard/dist/copy-to-clipboard.umd.js"></script>
<script>
/*! @uiw/copy-to-clipboard v1.0.12 | MIT (c) 2021 Kenny Wang | https://github.com/uiwjs/copy-to-clipboard.git */
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).copyTextToClipboard=t()}(this,(function(){"use strict";return function(e,t){const o=document.createElement("textarea");o.value=e,o.setAttribute("readonly",""),o.style={position:"absolute",left:"-9999px"},document.body.appendChild(o);const n=document.getSelection().rangeCount>0&&document.getSelection().getRangeAt(0);o.select();let c=!1;try{c=!!document.execCommand("copy")}catch(e){c=!1}document.body.removeChild(o),n&&document.getSelection&&(document.getSelection().removeAllRanges(),document.getSelection().addRange(n)),t&&t(c)}}));

function copied(target, str) {
target.classList.add('active');
copyTextToClipboard(target.dataset.code, function() {
Expand Down

0 comments on commit b709569

Please sign in to comment.