]> git.parisson.com Git - pdf.js.git/commitdiff
Remove console.logs from previous commit again
authorJulian Viereck <julian.viereck@gmail.com>
Fri, 9 Sep 2011 23:29:50 +0000 (16:29 -0700)
committerJulian Viereck <julian.viereck@gmail.com>
Thu, 15 Sep 2011 20:16:03 +0000 (13:16 -0700)
fonts.js
pdf.js
worker.js

index e8ab0c56da984e1b254c8de11314551a12a1c8e4..fd467eecab6555c7702d3d46e310ce5c176c07c9 100755 (executable)
--- a/fonts.js
+++ b/fonts.js
@@ -165,8 +165,6 @@ var FontLoader = {
   waitingStr:  [],
 
   bind: function(fonts, callback) {
-    console.log("requesting fonts", fonts[0].properties.loadedName, fonts[0].name);
-    
     var rules = [], names = [];
 
     for (var i = 0; i < fonts.length; i++) {
diff --git a/pdf.js b/pdf.js
index c8068dd3b886651bea88ab213310e28a735f346d..e7c3d6efa1a7772e257ec11b6e374102f1d928b3 100644 (file)
--- a/pdf.js
+++ b/pdf.js
@@ -4893,7 +4893,6 @@ var CanvasGraphics = (function() {
               // If the promise isn't resolved yet, add the continueCallback
               // to the promise and bail out.
               if (!promise.isResolved) {
-                console.log("depending on obj", depObjId);
                 promise.then(continueCallback);
                 return i;
               }
index 440b948175fb2619339776295293373ff22c7ef2..78e88835c0ff191166955e512ec7f362912641e4 100644 (file)
--- a/worker.js
+++ b/worker.js
@@ -93,8 +93,6 @@ var Promise = (function() {
   
   Promise.prototype = {
     resolve: function(data) {
-      console.log("resolve", this.name);
-      
       if (this.isResolved) {
         throw "A Promise can be resolved only once";
       }
@@ -166,8 +164,6 @@ var WorkerPDFDoc = (function() {
           var file = data[3];
           var properties = data[4];
 
-          console.log("got new font", name);
-
           var font = {
             name: name,
             file: file,