FIX: Quote reply button was covered by iOS menu.
This commit is contained in:
parent
c095304d6d
commit
2862c4e5a3
|
@ -85,7 +85,7 @@ export default Ember.Controller.extend({
|
||||||
let topOff = markerOffset.top;
|
let topOff = markerOffset.top;
|
||||||
let leftOff = markerOffset.left;
|
let leftOff = markerOffset.left;
|
||||||
|
|
||||||
if (isMobileDevice) {
|
if (isMobileDevice || this.capabilities.isIOS) {
|
||||||
topOff = topOff + 20;
|
topOff = topOff + 20;
|
||||||
leftOff = Math.min(leftOff + 10, $(window).width() - $quoteButton.outerWidth());
|
leftOff = Math.min(leftOff + 10, $(window).width() - $quoteButton.outerWidth());
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue