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'; 'use strict';
getPdf('helloworld.pdf', function(data){ getPdf('helloworld.pdf', function getPdfHelloWorld(data) {
// //
// Instantiate PDFDoc with PDF data // Instantiate PDFDoc with PDF data
// //

6
pdf.js
View File

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

View File

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

View File

@ -107,7 +107,7 @@ var PDFView = {
document.title = url; 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'; document.getElementById('loading').style.display = 'none';
PDFView.load(data, scale); PDFView.load(data, scale);
}); });