Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Applelo committed Jan 9, 2024
1 parent e0661ae commit cf3c938
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 7 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ pnpm add -D @compotes/nuxt

> Vue 3/Nuxt 3 packages will arrive soon stay tuned!

## 🙋‍♂️ Why ?

A lot of components library are already shipped with styles but as a Front End developer, I always wants to override a lot. Futhermore, there are not always accessible or they are shipped with jQuery.
Expand Down
2 changes: 1 addition & 1 deletion docs/demo/drilldown.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@
Item
</li>
</ul>
</nav>
</nav>
2 changes: 1 addition & 1 deletion docs/guide/drag.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ drag.addEventListener('c.drag.init', (e) => { // [!code focus:3]
- `c.drag.init`: On component init
- `c.drag.start`: On component drag start
- `c.drag.end`: On component drag end
- `c.drag.destroy`: On component destroy
- `c.drag.destroy`: On component destroy
2 changes: 1 addition & 1 deletion docs/guide/drilldown.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,4 @@ drilldownElement.addEventListener('c.drilldown.init', (e) => {
- `c.drilldown.next`: On next
- `c.drilldown.back`: On back
- `c.drilldown.reset`: On reset
- `c.drilldown.destroy`: On component destroy
- `c.drilldown.destroy`: On component destroy
1 change: 0 additions & 1 deletion docs/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,3 @@ Only the main css files is compiled and minified. The other parts are not. You n
```

5. That's it! Check each component for details about structure, advice for accessibility, options and more!

1 change: 0 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,3 @@ features:
icon: 📠
details: Typescript for better world
---

2 changes: 1 addition & 1 deletion packages/core/src/components/drag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default class Drag extends Parent {
*/
public get isDraggable() {
return this.el.clientHeight !== this.el.scrollHeight
|| this.el.clientWidth !== this.el.scrollWidth
|| this.el.clientWidth !== this.el.scrollWidth
}

/**
Expand Down

0 comments on commit cf3c938

Please sign in to comment.