diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 13:28:55 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 18:26:14 +0200 |
commit | 32af48e442a960b8c3f199f5ffad28a34590fcda (patch) | |
tree | c291cb97627bd2cfb65167347261d5ef8f521bfd /data/lib/checkin-context.js | |
parent | 2382ba19afc84e9b747a7981ebf72aaa704f08b6 (diff) | |
download | bugzilla-triage-32af48e442a960b8c3f199f5ffad28a34590fcda.tar.gz |
Reformatting to MoFo coding style
Diffstat (limited to 'data/lib/checkin-context.js')
-rw-r--r-- | data/lib/checkin-context.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/data/lib/checkin-context.js b/data/lib/checkin-context.js index 8ae482d..0ccec0c 100644 --- a/data/lib/checkin-context.js +++ b/data/lib/checkin-context.js @@ -1,11 +1,13 @@ self.on('click', function(node, data) { - var message = document.getElementById("__bz_tw_checkin_comment"); + var message = document + .getElementById("__bz_tw_checkin_comment"); self.postMessage(message.textContent); }); self.on('context', function(node) { if (!onBugzillaPage(document.URL)) return false; - var message = document.getElementById("__bz_tw_checkin_comment"); + var message = document + .getElementById("__bz_tw_checkin_comment"); return !!message; }); |