File tree 5 files changed +7
-7
lines changed
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export default Ember.Component.extend({
7
7
this . $ ( '.center' ) . css ( 'opacity' , '0' ) ;
8
8
var _this = this ;
9
9
setTimeout ( function ( ) {
10
- _this . get ( 'f7' ) . sizeNavbars ( ) ;
10
+ _this . get ( 'f7.f7 ' ) . sizeNavbars ( ) ;
11
11
_this . $ ( '.center' ) . css ( 'opacity' , '1' ) ;
12
12
} , 0 ) ;
13
13
}
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ export default Ember.Component.extend({
37
37
*/
38
38
initSearchBar : function ( ) {
39
39
if ( this . get ( 'searchBar' ) ) {
40
- this . get ( 'f7' ) . initSearchbar ( this . $ ( ) ) ;
40
+ this . get ( 'f7.f7 ' ) . initSearchbar ( this . $ ( ) ) ;
41
41
}
42
42
} . observes ( 'searchBar' )
43
43
} ) ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export default Ember.Mixin.create({
7
7
if ( action ) {
8
8
this . $ ( ) . addClass ( 'infinite-scroll' ) ;
9
9
this . set ( 'hasInfiniteScroll' , true ) ;
10
- this . get ( 'f7' ) . attachInfiniteScroll ( this . $ ( ) ) ;
10
+ this . get ( 'f7.f7 ' ) . attachInfiniteScroll ( this . $ ( ) ) ;
11
11
this . $ ( ) . on ( 'infinite' , function ( ) {
12
12
if ( _this . get ( 'loading' ) ) return ;
13
13
_this . $ ( ) . find ( '.infinite-scroll-preloader' ) . show ( ) ;
@@ -24,7 +24,7 @@ export default Ember.Mixin.create({
24
24
} . on ( 'didInsertElement' ) ,
25
25
26
26
detachInfiniteScroll : function ( ) {
27
- this . get ( 'f7' ) . detachInfiniteScroll ( this . $ ( ) ) ;
27
+ this . get ( 'f7.f7 ' ) . detachInfiniteScroll ( this . $ ( ) ) ;
28
28
this . $ ( ) . find ( '.infinite-scroll-preloader' ) . hide ( ) ;
29
29
}
30
30
} ) ;
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ export default Ember.Mixin.create({
7
7
if ( action ) {
8
8
this . $ ( ) . addClass ( 'pull-to-refresh-content' ) ;
9
9
this . set ( 'hasPullToRefresh' , true ) ;
10
- this . get ( 'f7' ) . initPullToRefresh ( this . $ ( ) ) ;
10
+ this . get ( 'f7.f7 ' ) . initPullToRefresh ( this . $ ( ) ) ;
11
11
this . $ ( ) . on ( 'refresh' , function ( ) {
12
12
var deferred = Ember . RSVP . defer ( ) ;
13
13
deferred . promise . finally ( function ( ) {
14
- _this . get ( 'f7' ) . pullToRefreshDone ( ) ;
14
+ _this . get ( 'f7.f7 ' ) . pullToRefreshDone ( ) ;
15
15
} ) ;
16
16
_this . sendAction ( 'onPullToRefresh' , deferred ) ;
17
17
} ) ;
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export default Ember.Component.extend({
16
16
if ( searchList . length > 1 ) {
17
17
throw new Error ( 'There is more then one search list available within the search component.' ) ;
18
18
}
19
- this . get ( 'f7' ) . initSearchbar ( this . $ ( ) ) ;
19
+ this . get ( 'f7.f7 ' ) . initSearchbar ( this . $ ( ) ) ;
20
20
} ,
21
21
22
22
onQueryChanged : function ( ) {
You can’t perform that action at this time.
0 commit comments