Index: class-wp-editor.php
===================================================================
--- class-wp-editor.php	(revision 27011)
+++ class-wp-editor.php	(working copy)
@@ -893,7 +893,12 @@
 				continue;
 			}
 
-			$onclick = ! empty( $args['onclick'] ) ? ' onclick="' . $args['onclick'] . '"' : '';
+			if( true == array_key_exists( 'customhtml', $args ) ) {
+				echo $args['customhtml'];
+			}
+			else {
+			
+				$onclick = ! empty( $args['onclick'] ) ? ' onclick="' . $args['onclick'] . '"' : '';
 			?>
 
 			<div class="mce-widget mce-btn<?php if ( $args['both'] ) { ?> wp-fullscreen-both<?php } ?>">
@@ -902,6 +907,7 @@
 			</button>
 			</div>
 			<?php
+			}
 		}
 
 		?>
