File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ export default Ember.ArrayController.extend(PaginationMixin, {
29
29
toggleShowSortBy ( ) {
30
30
var opt = 'showSortBy' ;
31
31
this . get ( 'controllers.application' ) . resetDropdownOption ( this , opt ) ;
32
-
33
32
} ,
34
33
} ,
35
34
} ) ;
Original file line number Diff line number Diff line change 24
24
<div id =' stats' >
25
25
<div class =' downloads' >
26
26
<img src =" /assets/download.png" />
27
- <span class =' num' >{{ format-num num_downloads }} </span >
27
+ <span class =' num' >{{ format-num model. num_downloads}} </span >
28
28
<span class =' desc small' >Downloads</span >
29
29
</div >
30
30
<div class =' crates' >
31
31
<img src =" /assets/crate.png" />
32
- <span class =' num' >{{ format-num num_crates }} </span >
32
+ <span class =' num' >{{ format-num model. num_crates}} </span >
33
33
<span class =' desc small' >Crates in stock</span >
34
34
</div >
35
35
</div >
38
38
<div id =' home-crates' class =' crate-lists' >
39
39
<div id =' new-crates' >
40
40
<h2 >New Crates</h2 >
41
- {{ crate-list crates =new_crates }}
41
+ {{ crate-list crates =model. new_crates}}
42
42
</div >
43
43
<div id =' most-downloaded' >
44
44
<h2 >Most Downloaded</h2 >
45
- {{ crate-list crates =most_downloaded }}
45
+ {{ crate-list crates =model. most_downloaded}}
46
46
</div >
47
47
<div id =' just-updated' >
48
48
<h2 >Just Updated</h2 >
49
- {{ crate-list crates =just_updated }}
49
+ {{ crate-list crates =model. just_updated}}
50
50
</div >
51
51
</div >
You can’t perform that action at this time.
0 commit comments