From 8585af15ed8b07386f7ae1daac3bd90165600569 Mon Sep 17 00:00:00 2001 From: Fomafix Date: Tue, 29 Apr 2014 19:39:37 +0000 Subject: [PATCH] Avoid theoretical division by zero Fix white spaces. Change-Id: I7f595291253fa58c30912c97a1f6c67e53d47dc0 --- resources/src/jquery/jquery.suggestions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/src/jquery/jquery.suggestions.js b/resources/src/jquery/jquery.suggestions.js index a20a948d82..4bab65f6a5 100644 --- a/resources/src/jquery/jquery.suggestions.js +++ b/resources/src/jquery/jquery.suggestions.js @@ -193,7 +193,7 @@ $.suggestions = { } else { regionWidth = $region.outerWidth(); docWidth = $( document ).width(); - if ( ( regionWidth / docWidth ) > 0.85 ) { + if ( regionWidth > ( 0.85 * docWidth ) ) { // If the input size takes up more than 85% of the document horizontally // expand the suggestions to the writing direction's native end. expandFrom = 'start'; @@ -201,7 +201,7 @@ $.suggestions = { // Calculate the center points of the input and document regionCenter = $region.offset().left + regionWidth / 2; docCenter = docWidth / 2; - if ( Math.abs( regionCenter - docCenter ) / docCenter < 0.10 ) { + if ( Math.abs( regionCenter - docCenter ) < ( 0.10 * docCenter ) ) { // If the input's center is within 10% of the document center // use the writing direction's native end. expandFrom = 'start'; -- 2.20.1