@@ -130,27 +130,34 @@ jQuery(document).ready( function()
return false;
});
jQuery('.qTipCell').qtip(
{
style: {
tip: true,
classes: "ui-tooltip-dark ui-tooltip-shadow ui-tooltip-rounded"
},
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: