1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-20 07:08:08 +02:00

restore getChar in JpegStream

This commit is contained in:
Andreas Gal 2011-06-20 22:39:49 -04:00
parent a6c48e3bc2
commit 825f9249b2

3
pdf.js
View file

@ -542,6 +542,9 @@ var JpegStream = (function() {
constructor.prototype = {
getImage: function() {
return this.domImage;
},
getChar: function() {
error("internal error: getChar is not valid on JpegStream");
}
};