Skip to content
Snippets Groups Projects
Commit 75013952 authored by Anton Shestakov's avatar Anton Shestakov
Browse files

hgweb: add missing semicolons to followlines.js

Minor stylistic issues caught by jshint.
parent b445fc69
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@
// element
var selectableElements = Array.prototype.filter.call(
sourcelines.children,
function(x) { return x.tagName === selectableTag });
function(x) { return x.tagName === selectableTag; });
var btnTitleStart = 'start following lines history from here';
var btnTitleEnd = 'terminate line block selection here';
......@@ -62,7 +62,7 @@
}
// extend DOM with CSS class for selection highlight and action buttons
var followlinesButtons = []
var followlinesButtons = [];
for (var i = 0; i < selectableElements.length; i++) {
selectableElements[i].classList.add('followlines-select');
var btn = createButton();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment