Skip to content

Commit

Permalink
fix: restore
Browse files Browse the repository at this point in the history
  • Loading branch information
h13i32maru committed Jan 1, 2017
1 parent 47b85d6 commit 10b1e2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/js/index.js
Expand Up @@ -39,7 +39,7 @@ const sourceCodeCM = CodeMirror(function(elt) {
const testCodeTX = document.querySelector('#test');
const testCodeCM = CodeMirror(function(elt) {
testCodeTX.parentNode.replaceChild(elt, testCodeTX);
}, {mode: 'javascript', lineNumbers: true, value: saveData.testCode || testCodeTX.value});
}, {mode: 'javascript', lineNumbers: true, value: savedData.testCode || testCodeTX.value});

const manualTX = document.querySelector('#manual');
const manualCM = CodeMirror(function(elt) {
Expand Down

0 comments on commit 10b1e2f

Please sign in to comment.