diff --git a/wp-includes/js/comment-reply.js b/wp-includes/js/comment-reply.js
index 75fc183..7d155b7 100644
--- a/wp-includes/js/comment-reply.js
+++ b/wp-includes/js/comment-reply.js
@@ -92,8 +92,8 @@ window.addComment = ( function( window ) {
 			return;
 		}
 
-		cancelElement.addEventListener( 'touchstart', cancelEvent );
-		cancelElement.addEventListener( 'click',      cancelEvent );
+		cancelElement.addEventListener( 'touchstart', window.addComment.cancelEvent );
+		cancelElement.addEventListener( 'click',      window.addComment.cancelEvent );
 
 		var links = replyLinks( context );
 		var element;
@@ -101,8 +101,8 @@ window.addComment = ( function( window ) {
 		for ( var i = 0, l = links.length; i < l; i++ ) {
 			element = links[i];
 
-			element.addEventListener( 'touchstart', clickEvent );
-			element.addEventListener( 'click',      clickEvent );
+			element.addEventListener( 'touchstart', window.addComment.clickEvent );
+			element.addEventListener( 'click',      window.addComment.clickEvent );
 		}
 	}
 
@@ -385,7 +385,10 @@ window.addComment = ( function( window ) {
 	}
 
 	return {
+		config: config,
 		init: init,
+		clickEvent: clickEvent,
+		cancelEvent: cancelEvent,
 		moveForm: moveForm
 	};
 })( window );
