61c7767f by Jeff Balicki

eee

1 parent 4f5ad798
......@@ -386,7 +386,7 @@ function create_notification()
'post_title' => $subject,
'post_status' => 'publish',
'post_type' => 'newsLetter',
'post_content' => $html,
'post_content' => '<div id="newsletter">'.$html.'</div>',
)
);
......@@ -464,7 +464,7 @@ function create_notification()
]
);
$links[$lang] = get_permalink($post_id);
$links[$lang] = get_post_field( 'post_name', $post_id );
}
// make post...
......
......@@ -421,6 +421,11 @@ endforeach;
jQuery(tinymce.get('fr_html').getBody()).html(<?php echo json_encode($newsletterFr->post_content); ?>);
// jQuery(document).on("click", jQuery(tinymce.get('en_html').getBody()).find( ".toc" ) ,function() {
// console.log(this);
// jQuery(this).parent().remove();
// });
jQuery(tinymce.get('en_html').getBody()).find( ".toc" ).click(function() {
jQuery(this).parent().remove();
......