We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65de1e1 commit 4431e5aCopy full SHA for 4431e5a
1 file changed
Easy offline/Easy offline.user.js
@@ -7,7 +7,7 @@
7
// @description:zh-TW 一鍵自動將磁鏈、bt種子或其他下載資源離綫下載至網槃
8
// @namespace http://tampermonkey.net/
9
// @require http://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.2/jquery.min.js
10
-// @version 1.0.39
+// @version 1.0.40
11
// @author Hoothin
12
// @mail rixixi@gmail.com
13
// @include http*://*/*
@@ -307,7 +307,7 @@
307
var configSave=document.querySelector("#configSave");
308
configContent=document.querySelector("#configContent");
309
configContent.style.display="block";
310
- $(configInput).val(GM_getValue("eoReg").join("\n"));
+ if(GM_getValue("eoReg"))$(configInput).val(GM_getValue("eoReg").join("\n"));
311
$(configQuit).click(function (event) {configContent.style.display="none";});
312
$(configSave).click(function (event) {
313
var regStr=$(configInput).val();
0 commit comments