mirror of
https://github.com/NotoChen/Jetbrains-Help.git
synced 2025-05-24 23:16:44 +08:00
vmoptions自动复制
This commit is contained in:
parent
73877a1f5e
commit
5b0b52b20e
|
@ -33,9 +33,14 @@ $(document).ready(function() {
|
||||||
|
|
||||||
// Function to show VM options
|
// Function to show VM options
|
||||||
window.showVmoptins = function () {
|
window.showVmoptins = function () {
|
||||||
alert("-javaagent:/(Your Path)/ja-netfilter/ja-netfilter.jar\n" +
|
var text = "-javaagent:/(Your Path)/ja-netfilter/ja-netfilter.jar\n" +
|
||||||
"--add-opens=java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED\n" +
|
"--add-opens=java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED\n" +
|
||||||
"--add-opens=java.base/jdk.internal.org.objectweb.asm.tree=ALL-UNNAMED");
|
"--add-opens=java.base/jdk.internal.org.objectweb.asm.tree=ALL-UNNAMED";
|
||||||
|
navigator.clipboard.writeText(text).then(function() {
|
||||||
|
alert("已复制:\n" + text);
|
||||||
|
}).catch(function(error) {
|
||||||
|
alert("复制失败: " + error);
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
// Function to copy license
|
// Function to copy license
|
||||||
|
|
Loading…
Reference in New Issue
Block a user