Avoid theoretical division by zero
authorFomafix <fomafix@googlemail.com>
Tue, 29 Apr 2014 19:39:37 +0000 (19:39 +0000)
committerOri Livneh <ori@wikimedia.org>
Sun, 18 May 2014 16:53:10 +0000 (09:53 -0700)
Fix white spaces.

Change-Id: I7f595291253fa58c30912c97a1f6c67e53d47dc0

resources/src/jquery/jquery.suggestions.js

index a20a948..4bab65f 100644 (file)
@@ -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';