FIX: Incorrect scope.
This commit is contained in:
parent
910e6a4765
commit
6dd6bbd509
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue