Skip to content

Commit

Permalink
Merge pull request #116 from srowhani/feature/fork-smoke-and-mirrors
Browse files Browse the repository at this point in the history
fix(temp): Use fork of smoke-and-mirrors
  • Loading branch information
sglanzer committed Mar 2, 2017
2 parents 52ea5cf + d0b2a6f commit 95d3a73
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions addon/templates/components/frost-list.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,12 @@
onLoadPrevious=onLoadPrevious
as |model index|
}}
<div class='
frost-list-item-container
{{if (eq index 0) ' first'}}
{{if (eq index (sub _items.length 1)) ' last'}}
{{if model.isSelected ' is-selected'}}'
<div class={{concat
'frost-list-item-container'
(if (eq index 0) ' first')
(if (eq index (sub _items.length 1)) ' last')
(if model.isSelected ' is-selected')
}}
data-test={{hook (concat hook '-item-container') index=index }}
>
<div class='frost-list-item-container-base'>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"loader.js": "^4.0.0",
"pull-report": "^0.3.1",
"sinon-chai": "^2.8.0",
"smoke-and-mirrors": "~0.6.2"
"smoke-and-mirrors": "github:ciena-frost/smoke-and-mirrors"
},
"keywords": [
"ember-addon",
Expand All @@ -87,4 +87,4 @@
"ember-frost-icon-pack": {
"name": "frost-list"
}
}
}

0 comments on commit 95d3a73

Please sign in to comment.