[Time Controller] Add overflow hidden

Add overflow: hidden so that time controller does not exceed
edges of the screen. WTD-1515
This commit is contained in:
Victor Woeltjen 2015-09-03 11:40:40 -07:00
parent e4dec21ceb
commit f74da6b935

View File

@ -28,7 +28,10 @@ define(
var CONDUCTOR_HEIGHT = "100px",
TEMPLATE = [
'<div style="position: absolute; bottom: 0; width: 100%; height: ' + CONDUCTOR_HEIGHT + '">',
'<div style=',
'"position: absolute; bottom: 0; width: 100%; ',
'overflow: hidden; ',
'height: ' + CONDUCTOR_HEIGHT + '">',
"<mct-include key=\"'time-controller'\"></mct-include>",
'</div>'
].join('');