Skip to content
Snippets Groups Projects
Commit c46fef42 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Make the linter happy

parent b6f373f0
No related branches found
No related tags found
No related merge requests found
Pipeline #50922 passed
...@@ -266,7 +266,7 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) { ...@@ -266,7 +266,7 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) {
* Checks if all files are already selected * Checks if all files are already selected
* Returns true if all files are selected * Returns true if all files are selected
* *
* @return Boolean * @returns {boolean}
*/ */
checkAllSelected() { checkAllSelected() {
if (this.tabulatorTable) { if (this.tabulatorTable) {
...@@ -284,7 +284,7 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) { ...@@ -284,7 +284,7 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) {
* Check mime type of a file, returns true if this.allowedMimeTypes contains the mime type of the file * Check mime type of a file, returns true if this.allowedMimeTypes contains the mime type of the file
* *
* @param file * @param file
* @return Boolean * @returns {boolean}
*/ */
checkFileType(file) { checkFileType(file) {
// check if file is allowed // check if file is allowed
...@@ -523,7 +523,7 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) { ...@@ -523,7 +523,7 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) {
* If this.mode === MODE_FILE_SINK or MODE_FILE_SOURCE then there are only delete and save files buttons available * If this.mode === MODE_FILE_SINK or MODE_FILE_SOURCE then there are only delete and save files buttons available
* Else there are the add, delete and save files buttons available * Else there are the add, delete and save files buttons available
* *
* @return html * @returns {html}
*/ */
getAdditionalButtons() { getAdditionalButtons() {
let buttonsAreDisabled = this.clipboardFiles.files.length === 0 ? true : this.clipboardSelectBtnDisabled; let buttonsAreDisabled = this.clipboardFiles.files.length === 0 ? true : this.clipboardSelectBtnDisabled;
...@@ -587,7 +587,7 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) { ...@@ -587,7 +587,7 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) {
/** /**
* Get the clipboard sink html * Get the clipboard sink html
* *
* @return html * @returns {html}
*/ */
getClipboardSink() { getClipboardSink() {
const tabulatorCss = commonUtils.getAssetURL(pkgName, 'tabulator-tables/css/tabulator.min.css'); const tabulatorCss = commonUtils.getAssetURL(pkgName, 'tabulator-tables/css/tabulator.min.css');
...@@ -620,7 +620,7 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) { ...@@ -620,7 +620,7 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) {
/** /**
* Get the clipboard source html * Get the clipboard source html
* *
* @return html * @returns {html}
*/ */
getClipboardSource() { getClipboardSource() {
const tabulatorCss = commonUtils.getAssetURL(pkgName, 'tabulator-tables/css/tabulator.min.css'); const tabulatorCss = commonUtils.getAssetURL(pkgName, 'tabulator-tables/css/tabulator.min.css');
......
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