diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 13:28:55 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-05 14:47:40 +0200 |
commit | 55d9a312fbba91f1bcf5e3f3291b7bece8abb178 (patch) | |
tree | bb9ef165b425273da47aa000268395f87f26678e /data/lib/urltest.js | |
parent | 34bbe8e7306a0d0ec014db7512788ed92c625d19 (diff) | |
download | bugzilla-triage-55d9a312fbba91f1bcf5e3f3291b7bece8abb178.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 +} |