0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-12 08:52:39 +00:00

Getting ready to switch to jsx

This commit is contained in:
Scott Tolksdorf
2016-05-16 22:03:20 -04:00
parent 15ffb138eb
commit bfcf6ca7f2
4 changed files with 16 additions and 4 deletions

View File

@@ -18,7 +18,6 @@ var SheetEditor = React.createClass({
componentDidMount: function() {
var paneHeight = this.refs.main.parentNode.clientHeight;
paneHeight -= this.refs.snippetBar.clientHeight + 1;
this.refs.codeEditor.codeMirror.setSize(null, paneHeight);
},
@@ -35,7 +34,7 @@ var SheetEditor = React.createClass({
},
render : function(){
return <div className='sheetEditor'>
return <div className='sheetEditor' ref='main'>
<CodeEditor
ref='codeEditor'
wrap={true}

View File

@@ -18,6 +18,13 @@ var TPK = React.createClass({
};
},
//remove later
componentDidMount: function() {
this.setState({
sheetCode : localStorage.getItem('temp')
})
},
handleSplitMove : function(){
this.refs.editor.update();
},
@@ -25,7 +32,9 @@ var TPK = React.createClass({
handleCodeChange : function(code){
this.setState({
sheetCode : code
})
});
localStorage.setItem('temp', code);
},
render : function(){

View File

@@ -9,7 +9,10 @@
flex-direction : column;
.content{
position : relative;
height : calc(~"100% - 29px"); //Navbar height
//height : calc(~"100% - 29px"); //Navbar height
height : 100%;
flex : auto;
}
}

View File

@@ -31,6 +31,7 @@ var gulp = vitreumTasks(gulp, {
"codemirror/mode/gfm/gfm.js",
'codemirror/mode/javascript/javascript.js',
"moment",
"superagent",
"marked",