From d301c1f13f177b5ecf769d6b95e52a6f3da42e5b Mon Sep 17 00:00:00 2001 From: Jon Buckley Date: Thu, 31 Jan 2013 18:30:33 -0500 Subject: [PATCH] Issue #2008 - Fix lint errors for src/bidi.js --- src/bidi.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/bidi.js b/src/bidi.js index 5eb66bfd9..568d226f2 100644 --- a/src/bidi.js +++ b/src/bidi.js @@ -1,5 +1,6 @@ /* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */ +/* globals PDFJS */ /* Copyright 2012 Mozilla Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -68,11 +69,11 @@ var bidi = PDFJS.bidi = (function bidiClosure() { ]; function isOdd(i) { - return (i & 1) != 0; + return (i & 1) !== 0; } function isEven(i) { - return (i & 1) == 0; + return (i & 1) === 0; } function findUnequal(arr, start, value) { @@ -146,8 +147,8 @@ var bidi = PDFJS.bidi = (function bidiClosure() { function bidi(str, startLevel) { var isLTR = true; var strLength = str.length; - if (strLength == 0) - return new BidiResult(str, ltr); + if (strLength === 0) + return new BidiResult(str, isLTR); // get types, fill arrays @@ -180,7 +181,7 @@ var bidi = PDFJS.bidi = (function bidiClosure() { // if there are no rtl characters then no bidi needed // if less than 30% chars are rtl then string is primarily ltr // if more than 30% chars are rtl then string is primarily rtl - if (numBidi == 0) { + if (numBidi === 0) { isLTR = true; return new BidiResult(str, isLTR); }