From c5723be4db1f7ec5de3f058c8929cc5be58af07a Mon Sep 17 00:00:00 2001 From: GitBrent Date: Thu, 14 Sep 2017 20:16:01 -0500 Subject: [PATCH] Issue #174 --- dist/pptxgen.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dist/pptxgen.js b/dist/pptxgen.js index 70eeb5f9c..2c7fca946 100644 --- a/dist/pptxgen.js +++ b/dist/pptxgen.js @@ -64,7 +64,7 @@ if ( NODEJS ) { var PptxGenJS = function(){ // APP var APP_VER = "1.9.0-beta"; - var APP_REL = "20170912"; + var APP_REL = "20170914"; // CONSTANTS var MASTER_OBJECTS = { @@ -3146,7 +3146,11 @@ var PptxGenJS = function(){ // Color and Font are children of , so add them now before closing the runProperties tag if ( opts.color || opts.font_face ) { if ( opts.color ) startInfo += genXmlColorSelection( opts.color ); - if ( opts.font_face ) startInfo += ''; + if ( opts.font_face ) { + // NOTE: 'cs' = Complex Script, 'ea' = East Asian (use -120 instead of 0 - see Issue #174) + startInfo += '' + + '' + + ''; } // Hyperlink support