Parent Directory
|
Revision Log
|
Revision Graph
#201435 by netaustin: Added a setting to select between drop-down selector or auto-complete textfield for changing the project when you followup on an issue. This all works with the AHAH to repopulate the components, version selector, etc.
| 1 | function project_issue_autocomplete_handler() { |
| 2 | $('#edit-project-info-project-title').keyup(function(e) { |
| 3 | if (e.keyCode == 13) { |
| 4 | this.blur(); |
| 5 | } |
| 6 | }); |
| 7 | $('#edit-project-info-project-title').blur(function(e) { |
| 8 | $(this).parent().after($('<div class="wrapper-throbber">')); |
| 9 | }); |
| 10 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |