1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 01:58:06 +02:00

Merge pull request #846 from jviereck/feature_img_data

Add feature detection for using Uint8Array as imageData
This commit is contained in:
Artur Adib 2011-12-06 07:17:23 -08:00
commit 7edefbbe41
3 changed files with 42 additions and 17 deletions

View file

@ -5,6 +5,8 @@
var globalScope = (typeof window === 'undefined') ? this : window;
var isWorker = (typeof window == 'undefined');
var ERRORS = 0, WARNINGS = 1, TODOS = 5;
var verbosity = WARNINGS;