diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 01:00:35 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 01:00:35 +0200 |
commit | e53a0306d13924509b1be2085028a4213d861a20 (patch) | |
tree | c817c3d65acbef91a1e48a7a7d4e56e096ee4d7a /lib/logger.js | |
parent | 4964705f6918eda4cf4c310d261d95242bd2f0ad (diff) | |
download | bugzilla-triage-e53a0306d13924509b1be2085028a4213d861a20.tar.gz |
Two small typos
* it is config.XorgLogAnalysis not lowercase one
* timeSheetRecordsPrinter needs to be declared, otherwise it is not
available inside of the logger.js module itself.
Diffstat (limited to 'lib/logger.js')
-rw-r--r-- | lib/logger.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/logger.js b/lib/logger.js index 0b18c1b..dce3bad 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -78,7 +78,8 @@ exports.generateTimeSheet = function generateTimeSheet() { libbz.openURLInNewTab("data:text/html;charset=utf-8," + docHTML); }; -exports.timeSheetRecordsPrinter = function timeSheetRecordsPrinter(records, date) { +var timeSheetRecordsPrinter = exports.timeSheetRecordsPrinter = + function timeSheetRecordsPrinter(records, date) { var commentBugRE = new RegExp("[bB]ug\\s+([0-9]+)","g"); // sort the records into temporary array var tmpArr = []; |