Remove unused `placeholder` prop on RoomDropTarget

This commit is contained in:
David Baker 2017-04-26 16:27:25 +01:00
parent c070e86c1f
commit 7b3719bc3c
2 changed files with 6 additions and 19 deletions

View File

@ -22,13 +22,6 @@ module.exports = React.createClass({
displayName: 'RoomDropTarget', displayName: 'RoomDropTarget',
render: function() { render: function() {
if (this.props.placeholder) {
return (
<div className="mx_RoomDropTarget mx_RoomDropTarget_placeholder">
</div>
);
}
else {
return ( return (
<div className="mx_RoomDropTarget"> <div className="mx_RoomDropTarget">
<div className="mx_RoomDropTarget_label"> <div className="mx_RoomDropTarget_label">
@ -37,5 +30,4 @@ module.exports = React.createClass({
</div> </div>
); );
} }
}
}); });

View File

@ -33,11 +33,6 @@ limitations under the License.
margin-left: 10px; margin-left: 10px;
} }
.mx_RoomDropTarget_placeholder {
padding-top: 1px;
padding-bottom: 1px;
}
.mx_RoomDropTarget_label { .mx_RoomDropTarget_label {
position: relative; position: relative;
margin-top: 3px; margin-top: 3px;