15->16 JavaScript 変更

clearをファンクションにしてrootオブジェクトに移動

1.1 // main.js
brfore:

                clear : function (){
                        root.ctx.clearRect(0, 0, root.cnvWidth, root.cnvHeight);
                        root.setBgColor(root.bgColor);
                },

after:

                clear : function (){
                        root.clear();
                        root.setBgColor(root.bgColor);
                },

1.2 // canvas.js
brfore:

無し

after:

        this.clear = () => {
                this.ctx.clearRect(0, 0, this.cnvWidth, this.cnvHeight);
        }