Displaying (unformatted) function code.

This commit is contained in:
Ben Vanik 2013-12-22 09:25:44 -08:00
parent 4ecdfed46f
commit c92142ca02
20 changed files with 242 additions and 44 deletions

View file

@ -6,22 +6,3 @@
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
/*
var myTextArea = document.querySelector('.debugger-fnview-textarea');
var myCodeMirror = CodeMirror.fromTextArea(myTextArea, {
mode: 'javascript',
theme: 'default',
indentUnit: 2,
tabSize: 2,
lineNumbers: true,
firstLineNumber: 0,
lineNumberFormatter: function(line) {
return String('0x00000000' + line);
},
gutters: [],
//readOnly: true,
});
*/