mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-17 19:20:56 +01:00
13 lines
313 B
JavaScript
Executable File
13 lines
313 B
JavaScript
Executable File
$(function () {
|
|
$('.dropdown-toggle').dropdown();
|
|
var mode = $('#sourcecode').attr('language');
|
|
|
|
CodeMirror.fromTextArea(document.getElementById("sourcecode"), {
|
|
lineNumbers: true,
|
|
matchBrackets: true,
|
|
lineWrapping: true,
|
|
readOnly: true,
|
|
mode: mode
|
|
});
|
|
});
|