Merge pull request #544 from kkujala/master

Fix lint warnings.
This commit is contained in:
Chris Jones 2011-09-27 11:52:01 -07:00
commit a6c3a46ab4
4 changed files with 8 additions and 8 deletions

View File

@ -7,7 +7,7 @@
'use strict';
getPdf('helloworld.pdf', function(data){
getPdf('helloworld.pdf', function getPdfHelloWorld(data) {
//
// Instantiate PDFDoc with PDF data
//

4
pdf.js
View File

@ -130,7 +130,7 @@ function getPdf(arg, callback) {
xhr.expected = (document.URL.indexOf('file:') === 0) ? 0 : 200;
xhr.onprogress = params.progress || undefined;
xhr.onreadystatechange = function() {
xhr.onreadystatechange = function getPdfOnreadystatechange() {
var data;
if (xhr.readyState === 4 && xhr.status === xhr.expected) {
data = (xhr.mozResponseArrayBuffer || xhr.mozResponse ||
@ -4979,7 +4979,7 @@ var CanvasGraphics = (function canvasGraphics() {
if (IsDict(extGState) && extGState.has(dictName.name)) {
var gsState = this.xref.fetchIfRef(extGState.get(dictName.name));
var self = this;
gsState.forEach(function(key, value) {
gsState.forEach(function canvasGraphicsSetGStateForEach(key, value) {
switch (key) {
case 'Type':
break;

View File

@ -73,7 +73,7 @@ function nextTask() {
log('Loading file "' + task.file + '"\n');
getPdf(task.file, function(data){
getPdf(task.file, function nextTaskGetPdf(data) {
var failure;
try {
task.pdfDoc = new PDFDoc(data);