1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
Description: Use the system JavaScript and CSS.
Upstream ships embedded versions of these JavaScript and CSS files,
but it makes sense for Debian to use system ones.
From: Soren Stoutner <soren@stoutner.com>
Forwarded: not-needed
Last-Update: 2023-01-12
--- a/electrum/plugins/payserver/www/index.html
+++ b/electrum/plugins/payserver/www/index.html
@@ -3,11 +3,11 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Payment request</title>
- <script type="text/javascript" charset="utf-8" src="vendor/jquery-3.4.1.min.js"></script>
+ <script type="text/javascript" charset="utf-8" src="vendor/jquery.min.js"></script>
<script type="text/javascript" src="vendor/jquery-ui.min.js"></script>
<script type="text/javascript" src="vendor/qrcode.js"></script>
<link rel="stylesheet" type="text/css"
- href="vendor/jquery-ui-themes-1.12.1/themes/ui-lightness/jquery-ui.css">
+ href="vendor/jquery-ui-themes/ui-lightness/jquery-ui.css">
<style type="text/css">
body {
@@ -125,7 +125,7 @@
function doCopy(text){
navigator.clipboard.writeText(text);
- alert("Copied to Clipboard: " + text);
+ alert("Copied to Clipboard: " + text);
}
function openTab(tabName){
|