mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
minor refactoring of card-contents-base mixin
This commit is contained in:
parent
abee39ecd0
commit
1f12a377fa
@ -124,8 +124,7 @@ export default Ember.Mixin.create({
|
|||||||
});
|
});
|
||||||
|
|
||||||
this.appEvents.on(`topic-header:trigger-${id}`, (username, $target) => {
|
this.appEvents.on(`topic-header:trigger-${id}`, (username, $target) => {
|
||||||
this.set("isFixed", true);
|
this.setProperties({ isFixed: true, isDocked: true });
|
||||||
this.set("isDocked", true);
|
|
||||||
return this._show(username, $target);
|
return this._show(username, $target);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -188,8 +187,9 @@ export default Ember.Mixin.create({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isDocked && position.top < 44) {
|
const avatarOverflowSize = 44;
|
||||||
position.top = 44;
|
if (isDocked && position.top < avatarOverflowSize) {
|
||||||
|
position.top = avatarOverflowSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.$().css(position);
|
this.$().css(position);
|
||||||
|
Loading…
Reference in New Issue
Block a user