CSS overflow properties

This commit is contained in:
Mo Bitar
2018-04-12 12:41:24 -05:00
parent bdf9c3df80
commit 0bbc86f94e
3 changed files with 2 additions and 4 deletions

View File

@@ -829,7 +829,6 @@ class ComponentManager {
}
handleSetSizeEvent(component, data) {
var setSize = function(element, size) {
var widthString = typeof size.width === 'string' ? size.width : `${data.width}px`;
var heightString = typeof size.height === 'string' ? size.height : `${data.height}px`;
@@ -854,7 +853,6 @@ class ComponentManager {
setSize(content, data);
}
}
}