PluginProbe
bbPress / trunk
bbPress vtrunk
2.6.17 trunk 2.0 2.0-beta-1 2.0-beta-2b 2.0-beta-3 2.0-beta-3b 2.0-rc-2 2.0-rc-3 2.0-rc-4 2.0-rc-5 2.0.1 2.0.2 2.0.3 2.1 2.1-beta-1 2.1-rc1 2.1-rc2 2.1-rc3 2.1-rc4 2.1.1 2.1.2 2.1.3 2.2 2.2.1 All 72 releases
bbpress / includes / admin / assets / js / common.js

common.js in bbPress trunk, at includes/admin/assets/js/common.js

15 lines 338 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery( document ).ready( function() {
2
3 var bbp_author_id = jQuery( '#bbp_author_id' );
4
5 bbp_author_id.suggest(
6 bbp_author_id.data( 'ajax-url' ),
7 {
8 minchars: 1, // Allow single-digit user IDs
9 onSelect: function() {
10 var value = this.value;
11 bbp_author_id.val( value.substr( 0, value.indexOf( ' ' ) ) );
12 }
13 }
14 );
15 } );