diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-03-02 00:12:52 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-03-02 00:12:52 +0100 |
commit | 52bcf6e79eb3085b598a9ca0d21f60879a0e3706 (patch) | |
tree | 3bcddc3dfaa9f6ad7afbd0cf31f09d6bceb8e208 /lib/logger.js | |
parent | 9e6ca915c304b08e60f6dfa453475045ef438736 (diff) | |
download | bugzilla-triage-52bcf6e79eb3085b598a9ca0d21f60879a0e3706.tar.gz |
Yes, we can have window object in main script!
Diffstat (limited to 'lib/logger.js')
-rw-r--r-- | lib/logger.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/logger.js b/lib/logger.js index 2b2d228..94f7031 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -49,7 +49,7 @@ exports.clearTimeSheet = function clearTimeSheet() { }; exports.importTimeSheet = function importTimeSheet() { - var filename = prompts.promptFileOpenPicker(that.win); + var filename = prompts.promptFileOpenPicker(); if (fileMod.exists(filename)) { var otherTS = JSON.parse(fileMod.read(filename)); if (otherTS.logs) { |