Skip to content

Commit 6b74241

Browse files
JacksonJacksonRG
Jackson
authored andcommitted
removed a console.log
1 parent d7893e3 commit 6b74241

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/timeline/js/directives/ruler.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,6 @@ App.directive("tlRuler", function ($timeout) {
161161
});
162162

163163
drawTimes = () => {
164-
console.log(scope.scrollLeft);
165164
ruler = $("#ruler");
166165
width = $("body").width();
167166
$("#ruler span").remove();
@@ -184,7 +183,7 @@ App.directive("tlRuler", function ($timeout) {
184183
}
185184
}
186185

187-
scope.$watch("project.scale + markers.length + project.duration + scrollLeft", function (val) {
186+
scope.$watch("project.scale + project.duration + scrollLeft", function (val) {
188187
if (val) {
189188
$timeout(function () {
190189
drawTimes();

src/timeline/media/css/main.css

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ img {
5858
.tick_time {
5959
color: white;
6060
top: 5px;
61+
font-size: 0.9em;
6162
position: absolute;
6263
transform: translate(-50%,0);
6364
}

0 commit comments

Comments
 (0)