Guest User

Untitled

a guest
Jan 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. jQuery(".insert_to_post").live('click', function() {
  2. var shortcode = '';
  3. shortcode = '[gist id="' + jQuery(this).attr("gist_id") + '"]';
  4. tinyMCE.activeEditor.execCommand('mceInsertContent', 0, shortcode);
  5. jQuery("#dialog").dialog( "close" );
  6. return false;
  7. });
Add Comment
Please, Sign In to add comment