|
|
@@ -226,8 +226,6 @@ class Toolbox extends Component<Props, State> {
|
|
226
|
226
|
*/
|
|
227
|
227
|
constructor(props: Props) {
|
|
228
|
228
|
super(props);
|
|
229
|
|
- // dev msg
|
|
230
|
|
- // clog("dev_log","Toolbox constructor")
|
|
231
|
229
|
|
|
232
|
230
|
// Bind event handlers so they are only bound once per instance.
|
|
233
|
231
|
this._onMouseOut = this._onMouseOut.bind(this);
|
|
|
@@ -257,6 +255,8 @@ class Toolbox extends Component<Props, State> {
|
|
257
|
255
|
this.state = {
|
|
258
|
256
|
windowWidth: window.innerWidth
|
|
259
|
257
|
};
|
|
|
258
|
+ // dev msg
|
|
|
259
|
+ clog("dev_log","Toolbox constructor")
|
|
260
|
260
|
window.glob_dev_hooks.Toolbox.toolbox=this
|
|
261
|
261
|
}
|
|
262
|
262
|
|