diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-07-23 15:55:11 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-07-23 17:53:30 +0200 |
commit | 0a357a7d44aa3591c646daded8c25853eeafa5a3 (patch) | |
tree | c81174178f914c45906c4d071011a13558f20094 /web/html/pkgmerge.php | |
parent | 48ae736068f9953ba69c91190ef7eb7b056c2b50 (diff) | |
download | aur-0a357a7d44aa3591c646daded8c25853eeafa5a3.tar.gz aur-0a357a7d44aa3591c646daded8c25853eeafa5a3.tar.xz |
Add typeahead suggest to the merge request form
Add the typeahead implementation we already use for the package search
to the merge target text field. Instead of suggesting packages, suggest
package base names.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html/pkgmerge.php')
-rw-r--r-- | web/html/pkgmerge.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/web/html/pkgmerge.php b/web/html/pkgmerge.php index 6a3b3c57..df97a2ad 100644 --- a/web/html/pkgmerge.php +++ b/web/html/pkgmerge.php @@ -36,6 +36,23 @@ if (has_credential(CRED_PKGBASE_DELETE)): ?> <?php if (isset($_GET['via'])): ?> <input type="hidden" name="via" value="<?= intval($_GET['via']) ?>" /> <?php endif; ?> + <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> + <script type="text/javascript" src="/js/bootstrap-typeahead.min.js"></script> + <script type="text/javascript"> + $(document).ready(function() { + $('#merge_Into').typeahead({ + source: function(query, callback) { + $.getJSON('<?= get_uri('/rpc'); ?>', {type: "suggest-pkgbase", arg: query}, function(data) { + callback(data); + }); + }, + matcher: function(item) { return true; }, + sorter: function(items) { return items; }, + menu: '<ul class="pkgsearch-typeahead"></ul>', + items: 20 + }).attr('autocomplete', 'off'); + }); + </script> <p><label for="merge_Into" ><?= __("Merge into:") ?></label> <input type="text" id="merge_Into" name="merge_Into" value="<?= isset($_GET['into']) ? $_GET['into'] : '' ?>" /></p> <p><input type="checkbox" name="confirm_Delete" value="1" /> |