From bf5052ff0fe997d5c6b51ef196774952a68289ee Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Wed, 3 Dec 2014 14:57:54 -0500 Subject: [PATCH] LP#1402797 webby: repair Hatch type=text printing When printing text, Hatch was receiving no print content due to some code refactoring. Repaired. Signed-off-by: Bill Erickson Signed-off-by: Kathy Lussier --- Open-ILS/web/js/ui/default/staff/services/print.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/services/print.js b/Open-ILS/web/js/ui/default/staff/services/print.js index bcb8aa28e0..fa60193683 100644 --- a/Open-ILS/web/js/ui/default/staff/services/print.js +++ b/Open-ILS/web/js/ui/default/staff/services/print.js @@ -66,7 +66,7 @@ function($q , $window , $timeout , $http , egHatch , egAuth , egIDL , egOrg) { } else { // text content does not require compilation for remote printing - promise = $q.when(); + promise = $q.when(args.content); } // TODO: link print context to template type -- 2.43.2