diff --git a/app/assets/javascripts/discourse/controllers/quote-button.js.es6 b/app/assets/javascripts/discourse/controllers/quote-button.js.es6 index 53f711f8d31..c1ef10fdea7 100644 --- a/app/assets/javascripts/discourse/controllers/quote-button.js.es6 +++ b/app/assets/javascripts/discourse/controllers/quote-button.js.es6 @@ -62,6 +62,7 @@ export default Ember.Controller.extend({ markerElement.appendChild(document.createTextNode("\ufeff")); const isMobileDevice = this.site.isMobileDevice; + const isIOS = this.capabilities.isIOS; // collapse the range at the beginning/end of the selection range.collapse(!isMobileDevice); @@ -85,7 +86,7 @@ export default Ember.Controller.extend({ let topOff = markerOffset.top; let leftOff = markerOffset.left; - if (isMobileDevice || this.capabilities.isIOS) { + if (isMobileDevice || isIOS) { topOff = topOff + 20; leftOff = Math.min(leftOff + 10, $(window).width() - $quoteButton.outerWidth()); } else {