Browse Source

Fix style nit from brendandahl

Julian Viereck 14 years ago
parent
commit
80b759b093
  1. 4
      src/core.js

4
src/core.js

@ -545,7 +545,7 @@ var PDFDoc = (function pdfDoc() {
case 'JpegStream': case 'JpegStream':
var IR = data[2]; var IR = data[2];
new JpegImage(id, IR, this.objs); new JpegImage(id, IR, this.objs);
break; break;
case 'Font': case 'Font':
var name = data[2]; var name = data[2];
var file = data[3]; var file = data[3];
@ -575,7 +575,7 @@ var PDFDoc = (function pdfDoc() {
file: file, file: file,
properties: properties properties: properties
}); });
break; break;
default: default:
throw 'Got unkown object type ' + type; throw 'Got unkown object type ' + type;
} }

Loading…
Cancel
Save