[Timeline] Add missing semicolon

This commit is contained in:
Victor Woeltjen 2016-05-31 16:27:59 -07:00
parent 4f0e3fdf85
commit 5a2d1a746d

View File

@ -122,7 +122,7 @@ define(
*/
width: function (timestamp) {
var pixels = Math.ceil(toPixels(timestamp * (1 + PADDING)));
return Math.max(bounds.width, pixels)
return Math.max(bounds.width, pixels);
}
};
}