Skip to content

Commit

Permalink
Babel compiled versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mastef committed Apr 26, 2020
1 parent 4186c65 commit d6b1266
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion outlib/TabManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,10 @@ TabManager = function (_React$Component) {_inherits(TabManager, _React$Component
//this.update();
} }, { key: "hoverIcon", value: function hoverIcon(
e) {
var text = e.target.title || " ";
var text = "";
if (e && e.target && e.target.title) {
text = e.target.title;
}
var bottom = " ";
if (text.indexOf("\n") > -1) {
var a = text.split("\n");
Expand Down
2 changes: 1 addition & 1 deletion outlib/Window.js
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ Window = function (_React$Component) {_inherits(Window, _React$Component);
onMouseEnter: this.props.hoverIcon,
onDrop: this.drop },

React.createElement("div", { className: "windowcontainer" }, children)));
React.createElement("div", { className: "windowcontainer", title: "Focus this window\nWill select this window with " + tabs.length + " tabs" }, children)));


} else {
Expand Down

0 comments on commit d6b1266

Please sign in to comment.