Skip to content

Commit

Permalink
style(eslint): fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Apr 15, 2015
1 parent 8e47266 commit 850f3f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/angular/directive/item.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ IonicModule
innerElement.addClass('item-content');

if (isDefined($attrs.href) || isDefined($attrs.ngHref)) {
innerElement.attr('ng-href', '{{$href()}}')
innerElement.attr('ng-href', '{{$href()}}');
if (isDefined($attrs.target)) {
innerElement.attr('target', '{{$target()}}')
innerElement.attr('target', '{{$target()}}');
}
}

Expand Down

0 comments on commit 850f3f2

Please sign in to comment.