PluginProbe
bbPress / 2.6.17
bbPress v2.6.17
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 / replies.js

replies.js in bbPress 2.6.17, at includes/admin/assets/js/replies.js

17 lines 406 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 jQuery( '#misc-publishing-actions' ).find( '.misc-pub-section' ).first().remove();
4 jQuery( '#save-action' ).remove();
5
6 var bbp_topic_id = jQuery( '#bbp_topic_id' );
7
8 bbp_topic_id.suggest(
9 bbp_topic_id.data( 'ajax-url' ),
10 {
11 onSelect: function() {
12 var value = this.value;
13 bbp_topic_id.val( value.substr( 0, value.indexOf( ' ' ) ) );
14 }
15 }
16 );
17 } );