Index: wordpress.org/public_html/wp-content/plugins/plugin-directory/js/edit-form.js
===================================================================
--- wordpress.org/public_html/wp-content/plugins/plugin-directory/js/edit-form.js	(revision 5630)
+++ wordpress.org/public_html/wp-content/plugins/plugin-directory/js/edit-form.js	(working copy)
@@ -4,17 +4,10 @@
 
 ( function( $, wp, pluginDirectory ) {
 	var PluginEdit = {
-		$testedWith: {},
 
 		ready: function() {
-			PluginEdit.$testedWith   = $( '#tested-with-select' );
+			$( '#submitdiv' ).on( 'click', '.set-plugin-status', PluginEdit.setPluginStatus );
 
-			$( '#submitdiv' )
-				.on( 'click', '.edit-tested-with',     PluginEdit.editTestedWith )
-				.on( 'click', '.save-tested-with',     PluginEdit.updateTestedWith )
-				.on( 'click', '.cancel-tested-with',   PluginEdit.cancelTestedWith )
-				.on( 'click', '.set-plugin-status',    PluginEdit.setPluginStatus );
-
 			_.each( $( '#post-body' ).find( '.comments-box' ), PluginEdit.loadComments );
 
 			$( '#add-new-comment' ).on( 'click', 'a.button', PluginEdit.prepareCommentForm );
@@ -39,25 +32,6 @@
 			$( '#contact-author' ).appendTo( '#plugin-review .inside' );
 		},
 
-		editTestedWith: function() {
-			if ( PluginEdit.$testedWith.is( ':hidden' ) ) {
-				PluginEdit.$testedWith.slideDown( 'fast', function() {
-					$( 'select', PluginEdit.$testedWith ).focus();
-				} );
-				$( this ).hide();
-			}
-		},
-
-		updateTestedWith: function() {
-			PluginEdit.$testedWith.slideUp( 'fast' ).siblings( 'button.edit-tested-with' ).show().focus();
-			$( '#tested-with-display' ).text( $( 'option:selected', PluginEdit.$testedWith ).text() );
-		},
-
-		cancelTestedWith: function() {
-			$( '#tested-with' ).val( $( '#hidden-tested-with' ).val() );
-			PluginEdit.updateTestedWith();
-		},
-
 		setPluginStatus: function() {
 			if ( 'approved' === $(this).val() ) {
 				return confirm( pluginDirectory.approvePluginAYS );
@@ -135,6 +109,7 @@
 				$( '#committer-error' ).empty().hide();
 			}
 		}
+
 	};
 
 	$( PluginEdit.ready );
