@@ -142,15 +142,22 @@ jQuery(document).ready( function()
hide: {
event: 'mouseleave click'
},
position:{
my: 'bottom left',
at: 'top center',
}
});
jQuery(".clicktoclipboard").click( function() {
jQuery('.toclipboard', this).toggle();
/*
* Don't let the event bubble up if the user is clicking trying
* to select the permalink.
*/
jQuery('.toclipboard').click(function(e) {
e.stopPropagation();
);
Status change: