Skip to content

Commit

Permalink
Fix var declaration (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBuchholz committed Nov 21, 2019
1 parent ae923b2 commit 78eca71
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/interfaces/xmlnodesyncadapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
/*global _gpfDefineInterface*/ // Internal interface definition helper
/*global _gpfInterfaceQuery*/ // gpf.interfaces.query
/*global _gpfSyncReadSourceJSON*/ // Reads a source json file (only in source mode)
/*exported _GPF_XML_NODE_TYPE*/ // XML Node types
/*exported _gpfIXmlNodeSyncAdapter*/ // gpf.interfaces.IXmlNodeSyncAdapter
/*#endif*/

Expand All @@ -21,7 +22,7 @@
/**
* IXmlNodeSyncAdapter Node type constants
*/
_GPF_XML_NODE_TYPE = {
var _GPF_XML_NODE_TYPE = {
ELEMENT: 1,
ATTRIBUTE: 2,
TEXT: 3
Expand Down

0 comments on commit 78eca71

Please sign in to comment.