mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-24 22:31:15 +00:00
Fix lint errors
This commit is contained in:
@@ -167,12 +167,20 @@ $(document).ready(function(){
|
|||||||
|
|
||||||
$.each(datasets, function(key, val) {
|
$.each(datasets, function(key, val) {
|
||||||
var lowerCaseValue = (val.label.substring(0, val.label.length - 1)).toLowerCase();
|
var lowerCaseValue = (val.label.substring(0, val.label.length - 1)).toLowerCase();
|
||||||
choiceContainer.append('<li class="text-center '+
|
choiceContainer.append(
|
||||||
lowerCaseValue +'"><div class="series-checkbox-container"><input type="checkbox" name="' + key +
|
'<li class="text-center ' + lowerCaseValue + '">' +
|
||||||
'" checked="checked" id="id' + key +
|
'<div class="series-checkbox-container">' +
|
||||||
'"/><label for="id' + key +
|
'<input type="checkbox"' +
|
||||||
'"><span class="stat-type">' + val.label +
|
'name="' + key + '" ' +
|
||||||
'</span></label></div></li>');
|
'checked="checked" ' +
|
||||||
|
'id="id' + key + '"' +
|
||||||
|
'/>' +
|
||||||
|
'<label for="id' + key + '">' +
|
||||||
|
'<span class="stat-type">' + val.label + '</span>' +
|
||||||
|
'</label>' +
|
||||||
|
'</div>' +
|
||||||
|
'</li>'
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
choiceContainer.find('input').click(plotAccordingToChoices);
|
choiceContainer.find('input').click(plotAccordingToChoices);
|
||||||
|
2
public/js/site.min.js
vendored
2
public/js/site.min.js
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user