0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-13 21:42:45 +00:00

Formatting change - space out functions correctly

This commit is contained in:
G.Ambatte
2022-03-09 16:45:21 +13:00
parent 39d338e5bf
commit f8abca6053

View File

@@ -12,12 +12,14 @@ const SplitPane = createClass({
onDragFinish : function(){} //fires when dragging onDragFinish : function(){} //fires when dragging
}; };
}, },
getInitialState : function() { getInitialState : function() {
return { return {
size : null, size : null,
isDragging : false isDragging : false
}; };
}, },
componentDidMount : function() { componentDidMount : function() {
const paneSize = window.localStorage.getItem(this.props.storageKey); const paneSize = window.localStorage.getItem(this.props.storageKey);
if(paneSize){ if(paneSize){