Initial commit

This commit is contained in:
Klaus Silveira
2012-05-18 01:38:33 -03:00
commit df43c987cf
244 changed files with 20826 additions and 0 deletions

12
web/js/main.js Executable file
View File

@@ -0,0 +1,12 @@
$(function () {
$('.dropdown-toggle').dropdown();
var mode = $('#sourcecode').attr('language');
CodeMirror.fromTextArea(document.getElementById("sourcecode"), {
lineNumbers: true,
matchBrackets: true,
lineWrapping: true,
readOnly: true,
mode: mode
});
});