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
//

10
pdf.js
View File

@ -129,16 +129,16 @@ function getPdf(arg, callback) {
xhr.mozResponseType = xhr.responseType = 'arraybuffer';
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 ||
xhr.responseArrayBuffer || xhr.response);
xhr.responseArrayBuffer || xhr.response);
callback(data);
}
};
xhr.send(null);
xhr.send(null);
}
var Stream = (function streamStream() {
@ -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);

View File

@ -107,7 +107,7 @@ var PDFView = {
document.title = url;
getPdf({url:url, progress:PDFView.progressLevel}, function(data) {
getPdf({url: url, progress: PDFView.progressLevel}, function(data) {
document.getElementById('loading').style.display = 'none';
PDFView.load(data, scale);
});