Re-added copy path with ctrl+c

This commit is contained in:
Devine Lu Linvega
2018-10-02 07:38:14 +12:00
parent b7f188c7bf
commit 3879dd794c
11 changed files with 76 additions and 53 deletions

View File

@@ -46,9 +46,9 @@ function Interface()
}
}
for(let type in options){
for(const type in options){
let tools = options[type];
for(let name in tools){
for(const name in tools){
let tool = tools[name];
html += `
<svg
@@ -108,7 +108,7 @@ function Interface()
let segments = dotgrid.tool.layer()
let sum_segments = dotgrid.tool.length();
for(let i in segments){
for(const i in segments){
if(segments[i].vertices.length > 2){ multi_vertices = true; break; }
}