diff options
author | David Lawrence <dkl@mozilla.com> | 2016-05-05 23:39:06 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2016-05-05 23:39:06 +0200 |
commit | 32be47bad06b7f122a57921d1fc834de4a4f85bc (patch) | |
tree | ac5b79e484653c2a6056e7e52081a7075720560e /extensions | |
parent | 97cc953d8886f521744656a643dc34a021cfb43c (diff) | |
download | bugzilla-32be47bad06b7f122a57921d1fc834de4a4f85bc.tar.gz bugzilla-32be47bad06b7f122a57921d1fc834de4a4f85bc.tar.xz |
Bug 1270479 - Unsetting the needinfo checks the needinfo checkbox
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl b/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl index f350fb7f5..3a3bc7325 100644 --- a/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl +++ b/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl @@ -136,7 +136,7 @@ $(function() { } function needinfo_from_changed() { - $('#needinfo').prop('checked', $('#needinfo_from').val !== ''); + $('#needinfo').prop('checked', $('#needinfo_from').val() !== ''); } $(function() { |