even more semicolons...

This commit is contained in:
Ralf Teusner
2015-04-09 15:02:54 +02:00
parent f06a6e5489
commit 5c89403689

View File

@ -23,15 +23,15 @@
<script type="text/javascript">
//(function() {
var commentitor = $('#commentitor')
var userid = commentitor.data('user-id')
var fileid = commentitor.data('file-id')
var lineInput = $('#lineInput')
var commentInput = $('#commentInput')
commentitor = ace.edit(commentitor[0])
var commentitor = $('#commentitor');
var userid = commentitor.data('user-id');
var fileid = commentitor.data('file-id');
var lineInput = $('#lineInput');
var commentInput = $('#commentInput');
commentitor = ace.edit(commentitor[0]);
$('#submitComment').click(addComment)
setAnnotations()
$('#submitComment').click(addComment);
setAnnotations();
function setAnnotations() {
var session = commentitor.getSession()