diff options
author | Guy Pyrzak <guy.pyrzak@gmail.com> | 2010-11-21 14:19:10 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-11-21 14:19:10 +0100 |
commit | 47e67526f95b01e540f5cda8c4bc15a0e9dca593 (patch) | |
tree | 972dbacba398ef6139b8cdf1972c7239fc4ec05c /template/en/default/attachment | |
parent | a7a37db9a4c21ff345a91492631b43d5feff8e39 (diff) | |
download | bugzilla-47e67526f95b01e540f5cda8c4bc15a0e9dca593.tar.gz bugzilla-47e67526f95b01e540f5cda8c4bc15a0e9dca593.tar.xz |
Bug 386600: Implement auto-completion for the requestee field
r/a=LpSolit
Diffstat (limited to 'template/en/default/attachment')
-rw-r--r-- | template/en/default/attachment/create.html.tmpl | 3 | ||||
-rw-r--r-- | template/en/default/attachment/edit.html.tmpl | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/template/en/default/attachment/create.html.tmpl b/template/en/default/attachment/create.html.tmpl index 7ca4d4bba..b60463dd3 100644 --- a/template/en/default/attachment/create.html.tmpl +++ b/template/en/default/attachment/create.html.tmpl @@ -34,7 +34,8 @@ header = header subheader = subheader style_urls = [ 'skins/standard/attachment.css' ] - javascript_urls = [ "js/attachment.js", "js/util.js", "js/TUI.js" ] + yui = [ 'autocomplete' ] + javascript_urls = [ "js/attachment.js", 'js/field.js', "js/util.js", "js/TUI.js" ] doc_section = "attachments.html" %] diff --git a/template/en/default/attachment/edit.html.tmpl b/template/en/default/attachment/edit.html.tmpl index fc7977848..3630aad5e 100644 --- a/template/en/default/attachment/edit.html.tmpl +++ b/template/en/default/attachment/edit.html.tmpl @@ -37,8 +37,9 @@ header = header subheader = subheader doc_section = "attachments.html" - javascript_urls = ['js/attachment.js'] + javascript_urls = ['js/attachment.js', 'js/field.js'] style_urls = ['skins/standard/attachment.css'] + yui = [ 'autocomplete' ] bodyclasses = "no_javascript" %] |