diff --git a/index.html b/index.html index e2225cc..f9bb702 100644 --- a/index.html +++ b/index.html @@ -56,6 +56,9 @@ + + + @@ -152,14 +155,17 @@ - - - - +
+ + + + + +
@@ -212,6 +218,21 @@ handleColorChange(data) { this.$data.node.color = new cc.Color().fromHEX(data); }, + outputNodeHandler(target) { + let i = 1; + while(window['temp'+i] !== undefined) { + i++; + } + window['temp'+i] = this.$data.node; + console.log('temp' + i); + console.log(window['temp'+i]); + }, + outputComponentHandler(target) { + // TODO + }, + openGithub() { + window.open('https://github.com/potato47/ccc-devtools'); + }, filterNode(value, node) { if (!value) return true; return node.name.toLowerCase().indexOf(value.toLowerCase()) !== -1; diff --git a/screenshots/t5.png b/screenshots/t5.png new file mode 100644 index 0000000..2c6e8d5 Binary files /dev/null and b/screenshots/t5.png differ