Skip to content

Commit

Permalink
fix(controls): Remove console.log()
Browse files Browse the repository at this point in the history
Remove console.log()

#633
  • Loading branch information
Elecash committed Nov 3, 2017
1 parent ce4e4d5 commit 5e6a66e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/controls/vg-scrub-bar/vg-scrub-bar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ export class VgScrubBar implements OnInit, OnDestroy {

protected seekMove(offset: number) {
if (this.isSeeking) {
console.log(offset);
let percentage = Math.max(Math.min(offset * 100 / this.elem.scrollWidth, 99.9), 0);
this.target.time.current = percentage * this.target.time.total / 100;
this.target.seekTime(percentage, true);
Expand Down

0 comments on commit 5e6a66e

Please sign in to comment.