@@ -164,18 +164,18 @@ public function remove_retina_image( $attachment_id, $path ) {
164164 }
165165
166166 public function enqueue_scripts ( $ hook ) {
167- wp_enqueue_style ( self ::NAME .'_admin ' ,
167+ wp_enqueue_style ( self ::NAME . '_admin ' ,
168168 plugins_url ( '/css/admin.css ' , __FILE__ ),
169169 array (), self ::version ()
170170 );
171171
172- wp_register_script ( self ::NAME .'_admin ' ,
172+ wp_register_script ( self ::NAME . '_admin ' ,
173173 plugins_url ( '/js/admin.js ' , __FILE__ ),
174174 array (), self ::version (), true
175175 );
176176
177177 // WordPress < 3.3 does not handle multidimensional arrays
178- wp_localize_script ( self ::NAME .'_admin ' , 'tinyCompress ' , array (
178+ wp_localize_script ( self ::NAME . '_admin ' , 'tinyCompress ' , array (
179179 'nonce ' => wp_create_nonce ( 'tiny-compress ' ),
180180 'wpVersion ' => self ::wp_version (),
181181 'pluginVersion ' => self ::version (),
@@ -199,7 +199,7 @@ public function enqueue_scripts( $hook ) {
199199 'L10nWaiting ' => __ ( 'Waiting ' , 'tiny-compress-images ' ),
200200 ));
201201
202- wp_enqueue_script ( self ::NAME .'_admin ' );
202+ wp_enqueue_script ( self ::NAME . '_admin ' );
203203
204204 if ( 'media_page_tiny-bulk-optimization ' == $ hook ) {
205205 wp_enqueue_style (
@@ -214,7 +214,7 @@ public function enqueue_scripts( $hook ) {
214214 array (), self ::version (), true
215215 );
216216
217- wp_enqueue_script ( self ::NAME .'_tiny_bulk_optimization ' );
217+ wp_enqueue_script ( self ::NAME . '_tiny_bulk_optimization ' );
218218 }
219219
220220 }
0 commit comments