FIX: Incorrect scope.

This commit is contained in:
Guo Xiang Tan 2016-03-23 14:28:17 +08:00
parent 910e6a4765
commit 6dd6bbd509
1 changed files with 2 additions and 1 deletions

View File

@ -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 {