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