From 1cba6a36be204a53d54858a140839db584b92931 Mon Sep 17 00:00:00 2001 From: Guillermo Date: Tue, 14 Jul 2015 19:53:06 -0700 Subject: [PATCH] relative url prob --- lib/Tesseract.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Tesseract.js b/lib/Tesseract.js index a467e4c..ddf43b9 100644 --- a/lib/Tesseract.js +++ b/lib/Tesseract.js @@ -5,7 +5,7 @@ var Tesseract = (function(){ //https://cdn.rawgit.com/naptha/tesseract.js/master/worker/worker.js //https://rawgit.com/naptha/tesseract.js/master/worker/worker.js for testing - var blob = new Blob(["importScripts('https://cdn.rawgit.com/naptha/tessdata/worker/worker.js');"]); + var blob = new Blob(["importScripts('https://cdn.rawgit.com/naptha/tesseract.js/master/worker/worker.js');"]); // console.log('localhost') var worker = new Worker(window.URL.createObjectURL(blob)); worker.postMessage({init: {mem: 16777216*6}})