Skip to content

Commit

Permalink
Merge pull request g200kg#42 from g200kg/dev-select
Browse files Browse the repository at this point in the history
delete unused log
  • Loading branch information
g200kg committed Jul 28, 2020
2 parents 792bc3b + de8b71c commit e62ab14
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions webaudio-controls.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,12 @@ if(window.customElements){
switch(+this.outline){
case null:
case 0:
console.log("0")
this.elem.style.outline="none";
break;
case 1:
console.log("1")
this.elem.style.outline="1px solid #444";
break;
default:
console.log("E")
this.elem.style.outline=this.outline;
}
}
Expand Down Expand Up @@ -383,7 +380,7 @@ ${this.basestyle}
white-space:pre;
}
</style>
<div class='webaudio-knob-body' tabindex='1' touch-action='none'><div class='webaudioctrl-tooltip'></div><div class="webaudioctrl-label"><slot></slot></div></div>
<div class='webaudio-knob-body' tabindex='1' touch-action='none'><div class='webaudioctrl-tooltip'></div><div part="label" class="webaudioctrl-label"><slot></slot></div></div>
`;
this.elem=root.childNodes[2];
this.ttframe=this.elem.firstChild;
Expand Down Expand Up @@ -748,7 +745,7 @@ ${this.basestyle}
padding:0;
}
</style>
<div class='webaudio-slider-body' tabindex='1' touch-action='none'><div class='webaudio-slider-knob' touch-action='none'></div><div class='webaudioctrl-tooltip'></div><div class="webaudioctrl-label"><slot></slot></div></div>
<div class='webaudio-slider-body' tabindex='1' touch-action='none'><div class='webaudio-slider-knob' touch-action='none'></div><div class='webaudioctrl-tooltip'></div><div part="label" class="webaudioctrl-label"><slot></slot></div></div>
`;
this.elem=root.childNodes[2];
this.knob=this.elem.firstChild;
Expand Down Expand Up @@ -1182,7 +1179,7 @@ ${this.basestyle}
top:50%;
}
</style>
<div class='webaudio-switch-body' tabindex='1' touch-action='none'><div class='webaudioctrl-tooltip'></div><div class="webaudioctrl-label"><slot></slot></div></div>
<div class='webaudio-switch-body' tabindex='1' touch-action='none'><div class='webaudioctrl-tooltip'></div><div part="label" class="webaudioctrl-label"><slot></slot></div></div>
`;
this.elem=root.childNodes[2];
this.ttframe=this.elem.firstChild;
Expand Down

0 comments on commit e62ab14

Please sign in to comment.