File tree 1 file changed +17
-17
lines changed
1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -10,23 +10,23 @@ export default Ember.LinkComponent.extend({
10
10
this . attrs . hasBlock = true ;
11
11
} ,
12
12
13
- didInsertElement ( ) {
14
- const $card = this . $ ( ) ;
15
-
16
- $card . find ( 'h4' ) . hover ( ( ) => {
17
- const el = this . __createCardInfo ( $card ) ;
18
- el . addClass ( 'showin' ) ;
19
- el . fadeIn ( ) ;
20
- Ember . $ ( 'body' ) . append ( el ) ;
21
- el . css ( this . __fixBottom ( el ) ) ;
22
- } , ( event ) => {
23
- if ( this . __shouldNotRemoveCardInfo ( event ) ) {
24
- Ember . $ ( event . relatedTarget ) . hover ( ( ) => { } , this . __hideCardInfo ) ;
25
- } else {
26
- this . __hideCardInfo ( ) ;
27
- }
28
- } ) ;
29
- } ,
13
+ // didInsertElement() {
14
+ // const $card = this.$();
15
+ //
16
+ // $card.find('h4').hover(() => {
17
+ // const el = this.__createCardInfo($card);
18
+ // el.addClass('showin');
19
+ // el.fadeIn();
20
+ // Ember.$('body').append(el);
21
+ // el.css(this.__fixBottom(el));
22
+ // }, (event) => {
23
+ // if (this.__shouldNotRemoveCardInfo(event)) {
24
+ // Ember.$(event.relatedTarget).hover(() => {}, this.__hideCardInfo);
25
+ // } else {
26
+ // this.__hideCardInfo();
27
+ // }
28
+ // });
29
+ // },
30
30
31
31
__createCardInfo ( $card ) {
32
32
const info = $card . find ( '.channel-card__info' ) ;
You can’t perform that action at this time.
0 commit comments