www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit b60fdacd3ffec0ebe1dfe59f18e8630e61941018
parent 12e70460dcd360dd2771a09c8256e8c6757f50ed
Author: Dan Stillman <dstillman@zotero.org>
Date:   Mon,  8 May 2017 18:51:27 -0400

Fix whitespace and description in build_typeSchemaData.html

Diffstat:
Mchrome/content/zotero/tools/build_typeSchemaData.html | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/chrome/content/zotero/tools/build_typeSchemaData.html b/chrome/content/zotero/tools/build_typeSchemaData.html @@ -3,7 +3,7 @@ <title>Build schemaData.js</title> </head> <body> -<p>This script builds schemaData.js, which contains Zotero schema information for the connector.</p> +<p>This script builds typeSchemaData.js, which contains Zotero schema information for the connector.</p> <p id="result"></p> <script src="../include.js"></script> <script type="text/javascript"> @@ -13,7 +13,7 @@ var types = Zotero.ItemTypes.getTypes(); var fieldIDs = yield Zotero.DB.columnQueryAsync("SELECT fieldID FROM fieldsCombined"); - var baseMappedFields = Zotero.ItemFields.getBaseMappedFields(); + var baseMappedFields = Zotero.ItemFields.getBaseMappedFields(); for (let fieldID of fieldIDs) { var fieldObj = [/* name */Zotero.ItemFields.getName(fieldID)]; @@ -70,7 +70,7 @@ } // Write to file - var nsIFilePicker = Components.interfaces.nsIFilePicker; + var nsIFilePicker = Components.interfaces.nsIFilePicker; var fp = Components.classes["@mozilla.org/filepicker;1"] .createInstance(nsIFilePicker); fp.init(window, Zotero.getString('dataDir.selectDir'), nsIFilePicker.modeGetFolder);