Made the menu button a clickable image rather than an input element

This commit is contained in:
wmwragg 2016-08-16 17:34:33 +01:00
parent 58d9789645
commit 52f5061cc5

View file

@ -412,7 +412,7 @@ module.exports = React.createClass({
}
var editButton = (
<input type="image" src="img/icon_context_message.svg" alt="Options" title="Options" width="19" height="19" className="mx_EventTile_editButton" onClick={this.onEditClicked} />
<img className="mx_EventTile_editButton" src="img/icon_context_message.svg" width="19" height="19" alt="Options" title="Options" onClick={this.onEditClicked} />
);
return (