Skip to content
This repository has been archived by the owner on Feb 13, 2019. It is now read-only.

Commit

Permalink
Update FA icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Levinson committed Jun 21, 2016
1 parent ae86e1a commit 40b09ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions elements/bulbs-carousel/buttons.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ import { BulbsHTMLElement, registerElement } from 'bulbs-elements/register';

export class NextButton extends BulbsHTMLElement {
createdCallback () {
this.innerHTML = '<i class="fa fa-chevron-right"></i>';
this.innerHTML = '<i class="fa fa-angle-right"></i>';
}
}

export class PreviousButton extends BulbsHTMLElement {
createdCallback () {
this.innerHTML = '<i class="fa fa-chevron-left"></i>';
this.innerHTML = '<i class="fa fa-angle-left"></i>';
}
}

Expand Down
4 changes: 2 additions & 2 deletions elements/bulbs-carousel/buttons.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe('<bulbs-carousel-next>', () => {
});

it('renders a next icon', () => {
expect(subject.firstChild.matches('i.fa.fa-chevron-right')).to.be.true;
expect(subject.firstChild.matches('i.fa.fa-angle-right')).to.be.true;
});
});

Expand All @@ -24,6 +24,6 @@ describe('<bulbs-carousel-previous>', () => {
});

it('renders a previous icon', () => {
expect(subject.firstChild.matches('i.fa.fa-chevron-left')).to.be.true;
expect(subject.firstChild.matches('i.fa.fa-angle-left')).to.be.true;
});
});

0 comments on commit 40b09ca

Please sign in to comment.