Skip to content

Commit

Permalink
removed a console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackson authored and JacksonRG committed Jul 17, 2021
1 parent 2953274 commit 123c004
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/timeline/js/directives/ruler.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ App.directive("tlRuler", function ($timeout) {
});

drawTimes = () => {
console.log(scope.scrollLeft);
ruler = $("#ruler");
width = $("body").width();
$("#ruler span").remove();
Expand All @@ -184,7 +183,7 @@ App.directive("tlRuler", function ($timeout) {
}
}

scope.$watch("project.scale + markers.length + project.duration + scrollLeft", function (val) {
scope.$watch("project.scale + project.duration + scrollLeft", function (val) {
if (val) {
$timeout(function () {
drawTimes();
Expand Down
1 change: 1 addition & 0 deletions src/timeline/media/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ img {
.tick_time {
color: white;
top: 5px;
font-size: 0.9em;
position: absolute;
transform: translate(-50%,0);
}
Expand Down

0 comments on commit 123c004

Please sign in to comment.