Remove debugging.

This commit is contained in:
Brendan Dahl 2011-12-12 09:17:40 -08:00
parent 4c01766278
commit 0d370fd206

View File

@ -8,7 +8,7 @@ var globalScope = (typeof window === 'undefined') ? this : window;
var isWorker = (typeof window == 'undefined');
var ERRORS = 0, WARNINGS = 1, TODOS = 5;
var verbosity = TODOS;
var verbosity = WARNINGS;
// The global PDFJS object exposes the API
// In production, it will be declared outside a global wrapper
@ -16,7 +16,6 @@ var verbosity = TODOS;
if (!globalScope.PDFJS) {
globalScope.PDFJS = {};
}
PDFJS.disableWorker = true;
// getPdf()
// Convenience function to perform binary Ajax GET
// Usage: getPdf('http://...', callback)