Fix more stylelint and eslint errors
This commit is contained in:
parent
12cd4777d4
commit
5f8eab3f2b
2 changed files with 2 additions and 2 deletions
|
@ -2,4 +2,5 @@ extends: stylelint-config-standard
|
|||
|
||||
rules:
|
||||
color-hex-case: upper
|
||||
declaration-colon-newline-after: null
|
||||
selector-list-comma-newline-after: null
|
||||
|
|
|
@ -15,7 +15,7 @@ $(document).ready(function() {
|
|||
|
||||
// copy link to clipboard
|
||||
$copyBtn.click(() => {
|
||||
var aux = document.createElement('input');
|
||||
const aux = document.createElement('input');
|
||||
aux.setAttribute('value', $('#link').attr('value'));
|
||||
document.body.appendChild(aux);
|
||||
aux.select();
|
||||
|
@ -61,7 +61,6 @@ $(document).ready(function() {
|
|||
const popupDiv = document.createElement('div');
|
||||
const $popupText = $('<span>', { class: 'popuptext' });
|
||||
const cellText = document.createTextNode(file.name);
|
||||
const progress = document.createElement('p');
|
||||
|
||||
name.appendChild(cellText);
|
||||
|
||||
|
|
Loading…
Reference in a new issue