1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 01:58:06 +02:00

Refactor names in various files.

web/viewer.js
src/fonts.js (& remove unused global)
src/evaluator.js
src/canvas.js
This commit is contained in:
waddlesplash 2012-11-09 16:34:11 -05:00
parent 4dd0e02436
commit 32fbf687ab
4 changed files with 76 additions and 81 deletions

View file

@ -515,8 +515,8 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
getTextContent: function PartialEvaluator_getTextContent(
stream, resources, state) {
var bidiTexts;
var kSpaceFactor = 0.35;
var kMultipleSpaceFactor = 1.5;
var SPACE_FACTOR = 0.35;
var MULTI_SPACE_FACTOR = 1.5;
if (!state) {
bidiTexts = [];
@ -559,12 +559,12 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
chunk += fontCharsToUnicode(items[j], font);
} else if (items[j] < 0 && font.spaceWidth > 0) {
var fakeSpaces = -items[j] / font.spaceWidth;
if (fakeSpaces > kMultipleSpaceFactor) {
if (fakeSpaces > MULTI_SPACE_FACTOR) {
fakeSpaces = Math.round(fakeSpaces);
while (fakeSpaces--) {
chunk += ' ';
}
} else if (fakeSpaces > kSpaceFactor) {
} else if (fakeSpaces > SPACE_FACTOR) {
chunk += ' ';
}
}