Skip to content

Commit

Permalink
drop console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
zxhd863943427 committed Jun 17, 2023
1 parent 559b464 commit 2567131
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/clock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var getSec = (n)=>Math.floor(n / 1000) % 60
class Clock{
svg
constructor(data:any, callback:Function){
console.log(data)
// console.log(data)
clockSvg.selectAll('text').data(data)
.join('text')
.attr('text-anchor', 'middle')
Expand Down
2 changes: 1 addition & 1 deletion src/components/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function renderProcess(process:any){

class Process{
constructor(data:any){
console.log(data)
// console.log(data)
processSvg.selectAll('path').data(data)
.join('path')
.attr('fill',d=>color(d.type))
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function skipTarget(){

function start(){
let process = currentProcess
console.log(currentProcess)
// console.log(currentProcess)
setTransition(process);
renderProcess([process])
renderClock([process],finishTarget)
Expand Down

0 comments on commit 2567131

Please sign in to comment.