Skip to content

Commit 0b55629

Browse files
committed
refactor(chips): removed jquery and fixed tests
1 parent 0addc3b commit 0b55629

File tree

5 files changed

+132
-226
lines changed

5 files changed

+132
-226
lines changed

docs/js/materialize.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/autocomplete.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ let _defaults = {
2828

2929
export class Autocomplete extends Component {
3030
el: HTMLInputElement;
31-
private isOpen: boolean;
32-
private count: number;
33-
private activeIndex: number;
31+
isOpen: boolean;
32+
count: number;
33+
activeIndex: number;
3434
private oldVal: any;
3535
private $inputField: any;
3636
private $active: HTMLElement|null;

src/cards.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//import $ from "cash-dom";
1+
import $ from "cash-dom";
22
import anim from "animejs";
33

44
export class Cards {

0 commit comments

Comments
 (0)