From 03212b3cc0d5f80826fbb2ac4a76ca9a7560edc9 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sat, 9 Jul 2011 23:38:04 -0700 Subject: [PATCH] set up dummy functions for NYIs --- pdf.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pdf.js b/pdf.js index a40adbec7..c9a3d0cc3 100644 --- a/pdf.js +++ b/pdf.js @@ -5299,13 +5299,16 @@ var PDFFunction = (function() { return array; }, constructInterpolated: function() { - error('unhandled type of function'); + TODO('unhandled type of function'); + this.func = function () { return [ 255, 105, 180 ]; } }, constructStiched: function() { - error('unhandled type of function'); + TODO('unhandled type of function'); + this.func = function () { return [ 255, 105, 180 ]; } }, constructPostScript: function() { - error('unhandled type of function'); + TODO('unhandled type of function'); + this.func = function () { return [ 255, 105, 180 ]; } } };