]> git.parisson.com Git - pdf.js.git/commitdiff
Remove isGecko detection for now
authorJulian Viereck <julian.viereck@gmail.com>
Sat, 1 Oct 2011 15:53:56 +0000 (17:53 +0200)
committerJulian Viereck <julian.viereck@gmail.com>
Sun, 2 Oct 2011 10:16:12 +0000 (12:16 +0200)
pdf.js

diff --git a/pdf.js b/pdf.js
index 9f8e4c1c163a9e8430d7e634d5cdf5f84713d019..8968f761392074873f7ad71fc81495e2023b9650 100644 (file)
--- a/pdf.js
+++ b/pdf.js
@@ -6,11 +6,6 @@
 var ERRORS = 0, WARNINGS = 1, TODOS = 5;
 var verbosity = WARNINGS;
 
-var isGecko = false;
-if (typeof navigator !== 'undefined') {
-  isGecko = navigator.userAgent.indexOf("Gecko/") !== -1;
-}
-
 function log(msg) {
   if (console && console.log)
     console.log(msg);
@@ -5512,11 +5507,10 @@ var CanvasGraphics = (function() {
       var tmpCtx = tmpCanvas.getContext('2d');
       var tmpImgData;
       
-      // Gecko doesn't care too much of the shape of imgData, but other browser
-      // do.
-      if (isGecko) {
-        tmpImgData = imgData;
-      } else {
+      // Deactivating this for now until we have feature detection.
+      // if (isGecko) {
+      //  tmpImgData = imgData;
+      // } else {
         tmpImgData = tmpCtx.getImageData(0, 0, w, h);
 
         // Copy over the imageData.
@@ -5527,7 +5521,7 @@ var CanvasGraphics = (function() {
         // then coping over all the bytes one by one :/
         while (len--) 
           tmpImgDataPixels[len] = imgData.data[len];
-      }
+      // }
 
       tmpCtx.putImageData(tmpImgData, 0, 0);
       ctx.drawImage(tmpCanvas, 0, -h);