Version: 1
Carrier: PNG/RGB
SECRET = UTF8(secret) K = SHA256(SECRET)
PRNG = ChaCha20(
| import _ from 'lodash'; | |
| export const getHBValues = (text) => { | |
| const re = /{{[{]?(.*?)[}]?}}/g; | |
| const tags = []; | |
| let matches; | |
| while (Boolean((matches = re.exec(text)))) { | |
| if (matches) { | |
| tags.push(matches[1]); | |
| } |
| $(document).on('click', '.comment_submit', function(e) { | |
| var $this = $(this); | |
| var post_id = $this.closest('.box').attr('data-post_id'); | |
| var comment = $this.siblings('.comment_form').val(); | |
| $.ajax({ | |
| type: 'GET', | |
| url: 'interactions/facebook.interaction.php', | |
| data: { | |
| post_id: post_id, |