Completed
Push — master ( de850f...661b08 )
by Gary
02:43
created
react.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@  discard block
 block discarded – undo
12 12
 	public function __construct() {
13 13
 		$this->enqueue();
14 14
 
15
-		add_action( 'wp_head',     array( $this, 'print_settings' ) );
16
-		add_action( 'wp_footer',   array( $this, 'print_selector' ) );
15
+		add_action( 'wp_head', array( $this, 'print_settings' ) );
16
+		add_action( 'wp_footer', array( $this, 'print_selector' ) );
17 17
 
18
- 		add_filter( 'the_content', array( $this, 'the_content'    ) );
18
+ 		add_filter( 'the_content', array( $this, 'the_content' ) );
19 19
 	}
20 20
 
21 21
 	/**
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 		) );
75 75
 
76 76
 		$reactions_summary = array();
77
-		foreach( $reactions as $reaction ) {
77
+		foreach ( $reactions as $reaction ) {
78 78
 			if ( ! isset( $reactions_summary[ $reaction->comment_content ] ) ) {
79 79
 				$reactions_summary[ $reaction->comment_content ] = 0;
80 80
 			}
@@ -98,14 +98,14 @@  discard block
 block discarded – undo
98 98
 		?>
99 99
 			<div id="emoji-reaction-selector" style="display: none;">
100 100
 				<div class="tabs">
101
-					<div data-tab="0" alt="<?php echo __( 'People',   'reactions' ); ?>" class="emoji-reaction-tab"><?php echo __( '
Please login to merge, or discard this patch.