Skip to content

Instantly share code, notes, and snippets.

@benkeen
Last active August 29, 2015 14:19
Show Gist options
  • Save benkeen/5ff326a3bc6dd945519f to your computer and use it in GitHub Desktop.
Save benkeen/5ff326a3bc6dd945519f to your computer and use it in GitHub Desktop.
Solution 2: Overriding Tooltip
// our superior dash tooltip, introducing the not-at-all-deprecated <blink> tag
var DashTooltip = React.createClass({
render: function () {
return (
<div className="tt"><blink>{this.props.text}</blink></div>
);
}
});
FauxtonAPI.updateComponent('Tooltip', DashTooltip);
// now we can just use <Table /> wherever we want and our changes will have already been made to it
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment