Remove use of syntax where curly brackets are omitted in function defs

This commit is contained in:
Tom Najdek 2016-10-15 20:20:09 +01:00 committed by Dan Stillman
parent 54a2126b7d
commit d4dc86c975
23 changed files with 137 additions and 137 deletions

View file

@ -327,7 +327,7 @@ function makeZoteroContext(isConnector) {
// add connector-related properties
zContext.Zotero.isConnector = isConnector;
zContext.Zotero.instanceID = instanceID;
zContext.Zotero.__defineGetter__("isFirstLoadThisSession", function() isFirstLoadThisSession);
zContext.Zotero.__defineGetter__("isFirstLoadThisSession", function() { return isFirstLoadThisSession; });
};
/**