Skip to content

Commit

Permalink
#131 - fixed lint errors for failed builds
Browse files Browse the repository at this point in the history
  • Loading branch information
dortiz authored and dortiz committed Jun 29, 2021
1 parent 8e8f8a2 commit 4e4de0d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
3 changes: 1 addition & 2 deletions src/ids-color-picker/ids-color-picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class IdsColorPicker extends mix(IdsElement).with(IdsEventsMixin, IdsKeyboardMix
}

#handleEvents() {
/* istanbul ignore next */
/* istanbul ignore next */
this.idsColorsArr.forEach((element) => {
element.style.backgroundColor = element.getAttribute('hex');
});
Expand Down Expand Up @@ -199,7 +199,6 @@ class IdsColorPicker extends mix(IdsElement).with(IdsEventsMixin, IdsKeyboardMix
popup.visible = !popup.visible;
}


#updateColorCheck(target) {
/* istanbul ignore next */
const checkedColor = target.parentElement.querySelector('[checked="true"]');
Expand Down
13 changes: 6 additions & 7 deletions src/ids-color/ids-color.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@ import {
} from '../ids-mixins';

import styles from './ids-color.scss';

/**
* IDS Color
* @type {IdsColor}
* @inherits IdsElement
* @mixes IdsEventsMixin
* @mixes IdsKeyboardMixin
*/
* IDS Color
* @type {IdsColor}
* @inherits IdsElement
* @mixes IdsEventsMixin
* @mixes IdsKeyboardMixin
*/

@customElement('ids-color')
@scss(styles)
Expand Down

0 comments on commit 4e4de0d

Please sign in to comment.