28 lines
864 B
JavaScript
28 lines
864 B
JavaScript
/**
|
|
******************************************************************************
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
******************************************************************************
|
|
* Copyright 2013 Ben Vanik. All rights reserved. *
|
|
* 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,
|
|
});
|
|
*/
|