mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
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"));
|
markerElement.appendChild(document.createTextNode("\ufeff"));
|
||||||
|
|
||||||
const isMobileDevice = this.site.isMobileDevice;
|
const isMobileDevice = this.site.isMobileDevice;
|
||||||
|
const isIOS = this.capabilities.isIOS;
|
||||||
|
|
||||||
// collapse the range at the beginning/end of the selection
|
// collapse the range at the beginning/end of the selection
|
||||||
range.collapse(!isMobileDevice);
|
range.collapse(!isMobileDevice);
|
||||||
@ -85,7 +86,7 @@ export default Ember.Controller.extend({
|
|||||||
let topOff = markerOffset.top;
|
let topOff = markerOffset.top;
|
||||||
let leftOff = markerOffset.left;
|
let leftOff = markerOffset.left;
|
||||||
|
|
||||||
if (isMobileDevice || this.capabilities.isIOS) {
|
if (isMobileDevice || 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
Block a user