/[drupal]/contributions/modules/project_issue/project_issue.js
ViewVC logotype

Contents of /contributions/modules/project_issue/project_issue.js

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.7 - (show annotations) (download) (as text)
Sat Jan 31 05:50:34 2009 UTC (9 months, 3 weeks ago) by dww
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +9 -56 lines
File MIME type: text/javascript
#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