2009/dap/ReSpec.js/js respec.js,1.138,1.139

Update of /sources/public/2009/dap/ReSpec.js/js
In directory hutz:/tmp/cvs-serv8358/js

Modified Files:
	respec.js 
Log Message:
Allow configuration option inlineCSS = false to work.


Index: respec.js
===================================================================
RCS file: /sources/public/2009/dap/ReSpec.js/js/respec.js,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -d -r1.138 -r1.139
--- respec.js	23 Sep 2010 15:14:57 -0000	1.138
+++ respec.js	18 Oct 2010 22:06:49 -0000	1.139
@@ -521,7 +521,7 @@
         if (!cfg.editors) cfg.editors = [];
         if (!cfg.authors) cfg.authors = [];
         if (!cfg.alternateFormats) cfg.alternateFormats = [];
-        if (!cfg.inlineCSS) cfg.inlineCSS = true;
+        if (cfg.inlineCSS === undefined) cfg.inlineCSS = true;
         if (!cfg.noIDLSorting) cfg.noIDLSorting = false;
         if (!cfg.noIDLIn) cfg.noIDLIn = false;
         if (!cfg.maxTocLevel) cfg.maxTocLevel = 0;

Received on Monday, 18 October 2010 22:06:52 UTC