Remove: node on update.html #86
This commit is contained in:
parent
8d308cae5e
commit
070c40a958
|
@ -44,9 +44,13 @@ onmessage = function (e) {
|
|||
} else if (e.data[0] == "itunes") {
|
||||
if (ipc.listenerCount('itunes-np') > 0) {
|
||||
return false;
|
||||
}else{
|
||||
} else {
|
||||
ipc.send("itunes", e.data[1])
|
||||
}
|
||||
} else if (e.data[0] == "themeCSSRequest") {
|
||||
ipc.send('theme-css-request', e.data[1]);
|
||||
} else if (e.data[0] == "downloadButton") {
|
||||
ipc.send('download-btn', e.data[1]);
|
||||
}
|
||||
}
|
||||
//version.js
|
||||
|
@ -219,7 +223,7 @@ ipc.on('theme-json-response', function (event, args) {
|
|||
});
|
||||
ipc.on('theme-json-create-complete', function (event, args) {
|
||||
clearCustomImport()
|
||||
ctLoad()
|
||||
ctLoad()
|
||||
});
|
||||
//spotify.js
|
||||
ipc.once('itunes-np', function (event, arg) {
|
||||
|
@ -232,6 +236,13 @@ ipc.on('memory', function (event, arg) {
|
|||
var total = arg[2]
|
||||
renderMem(use, cpu, total)
|
||||
})
|
||||
//update.html
|
||||
ipc.on('prog', function (event, arg) {
|
||||
updateProg(arg)
|
||||
})
|
||||
ipc.on('mess', function (event, arg) {
|
||||
updateMess(arg)
|
||||
})
|
||||
/*
|
||||
var webviewDom = document.getElementById('webview');
|
||||
const {
|
||||
|
|
|
@ -21,7 +21,7 @@ function themes(theme) {
|
|||
}
|
||||
if (theme == "custom") {
|
||||
if (localStorage.getItem("customtheme-id")) {
|
||||
ipc.send('theme-css-request', localStorage.getItem("customtheme-id"));
|
||||
postMessage(["themeCSSRequest", localStorage.getItem("customtheme-id")], "*")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -214,9 +214,6 @@
|
|||
</ul>
|
||||
<!-- その他 Dropdown Structure -->
|
||||
<ul id="dropdown2" class="dropdown-content">
|
||||
<li>
|
||||
<a onclick="adobe()">Adobe Photo Editor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a onclick="nowplaying('spotify');">NowPlaying(Spotify)</a>
|
||||
</li>
|
||||
|
|
|
@ -135,9 +135,6 @@
|
|||
$("#skipper").toggleClass("show");
|
||||
}
|
||||
}
|
||||
var electron = require("electron");
|
||||
var ipc = electron.ipcRenderer;
|
||||
//var shell = electron.shell;
|
||||
verck();
|
||||
function update(sel) {
|
||||
$("#box").toggleClass("show");
|
||||
|
@ -186,22 +183,22 @@
|
|||
shell.openExternal(url);
|
||||
return false;
|
||||
}
|
||||
ipc.send('download-btn', [url, file]);
|
||||
postMessage(["downloadButton", [url, file]], "*")
|
||||
});
|
||||
|
||||
}
|
||||
function quit() {
|
||||
ipc.send('quit', 'go');
|
||||
postMessage(["sendSinmpleIpc", "quit"], "*")
|
||||
}
|
||||
ipc.on('prog', function (event, arg) {
|
||||
function updateProg(arg) {
|
||||
console.log(arg);
|
||||
$(".determinate").css("width",arg*100+"%");
|
||||
$(".determinate").css("width", arg * 100 + "%");
|
||||
$("#prog").text(Math.floor(arg * 100) + "%");
|
||||
})
|
||||
ipc.on('mess', function (event, arg) {
|
||||
}
|
||||
function updateMess(arg) {
|
||||
console.log(arg);
|
||||
$("#prog").text(arg);
|
||||
})
|
||||
}
|
||||
function verck() {
|
||||
var remote = electron.remote;
|
||||
var platform = remote.process.platform;
|
||||
|
|
|
@ -214,9 +214,6 @@
|
|||
</ul>
|
||||
<!-- その他 Dropdown Structure -->
|
||||
<ul id="dropdown2" class="dropdown-content">
|
||||
<li>
|
||||
<a onclick="adobe()">Adobeフォトエディタ</a>
|
||||
</li>
|
||||
<li>
|
||||
<a onclick="nowplaying('spotify');">NowPlaying(Spotify)</a>
|
||||
</li>
|
||||
|
|
|
@ -135,9 +135,6 @@
|
|||
$("#skipper").toggleClass("show");
|
||||
}
|
||||
}
|
||||
var electron = require("electron");
|
||||
var ipc = electron.ipcRenderer;
|
||||
//var shell = electron.shell;
|
||||
verck();
|
||||
function update(sel) {
|
||||
$("#box").toggleClass("show");
|
||||
|
@ -186,22 +183,22 @@
|
|||
shell.openExternal(url);
|
||||
return false;
|
||||
}
|
||||
ipc.send('download-btn', [url, file]);
|
||||
postMessage(["downloadButton", [url, file]], "*")
|
||||
});
|
||||
|
||||
}
|
||||
function quit() {
|
||||
ipc.send('quit', 'go');
|
||||
postMessage(["sendSinmpleIpc", "quit"], "*")
|
||||
}
|
||||
ipc.on('prog', function (event, arg) {
|
||||
function updateProg(arg) {
|
||||
console.log(arg);
|
||||
$(".determinate").css("width",arg*100+"%");
|
||||
$(".determinate").css("width", arg * 100 + "%");
|
||||
$("#prog").text(Math.floor(arg * 100) + "%");
|
||||
})
|
||||
ipc.on('mess', function (event, arg) {
|
||||
}
|
||||
function updateMess(arg) {
|
||||
console.log(arg);
|
||||
$("#prog").text(arg);
|
||||
})
|
||||
}
|
||||
function verck() {
|
||||
var remote = electron.remote;
|
||||
var platform = remote.process.platform;
|
||||
|
|
|
@ -135,9 +135,6 @@
|
|||
$("#skipper").toggleClass("show");
|
||||
}
|
||||
}
|
||||
var electron = require("electron");
|
||||
var ipc = electron.ipcRenderer;
|
||||
//var shell = electron.shell;
|
||||
verck();
|
||||
function update(sel) {
|
||||
$("#box").toggleClass("show");
|
||||
|
@ -186,22 +183,22 @@
|
|||
shell.openExternal(url);
|
||||
return false;
|
||||
}
|
||||
ipc.send('download-btn', [url, file]);
|
||||
postMessage(["downloadButton", [url, file]], "*")
|
||||
});
|
||||
|
||||
}
|
||||
function quit() {
|
||||
ipc.send('quit', 'go');
|
||||
postMessage(["sendSinmpleIpc", "quit"], "*")
|
||||
}
|
||||
ipc.on('prog', function (event, arg) {
|
||||
function updateProg(arg) {
|
||||
console.log(arg);
|
||||
$(".determinate").css("width",arg*100+"%");
|
||||
$(".determinate").css("width", arg * 100 + "%");
|
||||
$("#prog").text(Math.floor(arg * 100) + "%");
|
||||
})
|
||||
ipc.on('mess', function (event, arg) {
|
||||
}
|
||||
function updateMess(arg) {
|
||||
console.log(arg);
|
||||
$("#prog").text(arg);
|
||||
})
|
||||
}
|
||||
function verck() {
|
||||
var remote = electron.remote;
|
||||
var platform = remote.process.platform;
|
||||
|
|
|
@ -214,9 +214,6 @@
|
|||
</ul>
|
||||
<!-- その他 Dropdown Structure -->
|
||||
<ul id="dropdown2" class="dropdown-content">
|
||||
<li>
|
||||
<a onclick="adobe()">crwdns392:0crwdne392:0</a>
|
||||
</li>
|
||||
<li>
|
||||
<a onclick="nowplaying('spotify');">crwdns1880:0crwdne1880:0</a>
|
||||
</li>
|
||||
|
|
|
@ -135,9 +135,6 @@
|
|||
$("#skipper").toggleClass("show");
|
||||
}
|
||||
}
|
||||
var electron = require("electron");
|
||||
var ipc = electron.ipcRenderer;
|
||||
//var shell = electron.shell;
|
||||
verck();
|
||||
function update(sel) {
|
||||
$("#box").toggleClass("show");
|
||||
|
@ -186,22 +183,22 @@
|
|||
shell.openExternal(url);
|
||||
return false;
|
||||
}
|
||||
ipc.send('download-btn', [url, file]);
|
||||
postMessage(["downloadButton", [url, file]], "*")
|
||||
});
|
||||
|
||||
}
|
||||
function quit() {
|
||||
ipc.send('quit', 'go');
|
||||
postMessage(["sendSinmpleIpc", "quit"], "*")
|
||||
}
|
||||
ipc.on('prog', function (event, arg) {
|
||||
function updateProg(arg) {
|
||||
console.log(arg);
|
||||
$(".determinate").css("width",arg*100+"%");
|
||||
$(".determinate").css("width", arg * 100 + "%");
|
||||
$("#prog").text(Math.floor(arg * 100) + "%");
|
||||
})
|
||||
ipc.on('mess', function (event, arg) {
|
||||
}
|
||||
function updateMess(arg) {
|
||||
console.log(arg);
|
||||
$("#prog").text(arg);
|
||||
})
|
||||
}
|
||||
function verck() {
|
||||
var remote = electron.remote;
|
||||
var platform = remote.process.platform;
|
||||
|
|
Loading…
Reference in New Issue
Block a user