Index: messageforums-app/src/webapp/jsp/discussionForum/message/dfFlatView.jsp =================================================================== --- messageforums-app/src/webapp/jsp/discussionForum/message/dfFlatView.jsp (revision 108564) +++ messageforums-app/src/webapp/jsp/discussionForum/message/dfFlatView.jsp (working copy) @@ -19,21 +19,6 @@ - <%--// //plugin required below Index: messageforums-app/src/webapp/jsp/discussionForum/message/dfViewThread.jsp =================================================================== --- messageforums-app/src/webapp/jsp/discussionForum/message/dfViewThread.jsp (revision 108564) +++ messageforums-app/src/webapp/jsp/discussionForum/message/dfViewThread.jsp (working copy) @@ -65,20 +65,6 @@ $('.itemNav').clone().addClass('specialLink').appendTo('form') } }); - - //Profile tooltips - $(document).ready(function() { - $('.authorProfile').each(function() { - $(this).qtip({ - content: {text: '', url: $(this).attr('href'), title: { text: '',button: '[ X ]' } }, - position: { corner: {target: 'center', tooltip: 'leftMiddle'} }, - show: { when: 'mouseover', solo: true, effect: {length:0} }, - hide: { when:'mouseout', fixed:true, delay: 300, effect: {length:0} }, - style: { tip: true, border: {color:'#687E9C'}, name: 'light', width: 570 } - }); - $(this).attr('href', 'javascript:;'); - }); - }); + + <%--breadcrumb and thread nav grid--%> Index: messageforums-app/src/webapp/js/forum.js =================================================================== --- messageforums-app/src/webapp/js/forum.js (revision 108564) +++ messageforums-app/src/webapp/js/forum.js (working copy) @@ -603,4 +603,20 @@ else { document.forms[0].elements['dfCompose:post'].disabled=true; } -} \ No newline at end of file +} + +// This is the profile display on user's names. +$(document).ready(function() { + $('.authorProfile').each(function() { + $(this).qtip({ + content: {text: '', + url: $(this).attr('href'), title: { text: '',button: '[ X ]' } + }, + position: { corner: {target: 'center', tooltip: 'leftMiddle'} }, + show: { when: 'click', solo: true, effect: {length:0} }, + hide: { when:'unfocus', fixed:true, delay: 300, effect: {length:0} }, + style: { tip: true, border: {color:'#687E9C'}, name: 'light', width: 570 } + }); + $(this).attr('href', 'javascript:;'); + }); +}); \ No newline at end of file