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/urltest.js | |
parent | 2382ba19afc84e9b747a7981ebf72aaa704f08b6 (diff) | |
download | bugzilla-triage-32af48e442a960b8c3f199f5ffad28a34590fcda.tar.gz |
Reformatting to MoFo coding style
Diffstat (limited to 'data/lib/urltest.js')
-rw-r--r-- | data/lib/urltest.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/data/lib/urltest.js b/data/lib/urltest.js index a0dbabf..609e77b 100644 --- a/data/lib/urltest.js +++ b/data/lib/urltest.js @@ -1,4 +1,5 @@ function onBugzillaPage(url) { - return /https:\/\/bugzilla(-[a-zA-Z]+)*\.mozilla\.org/.test(url) + return /https:\/\/bugzilla(-[a-zA-Z]+)*\.mozilla\.org/ + .test(url) || /https:\/\/landfill.*\.bugzilla\.org/.test(url); -}
\ No newline at end of file +} |