[Fusionforge-commits] r11952 - in branches/Branch_5_1/src/www: js jscook/ThemeXP

Franck VILLAUME nerville at libremir.placard.fr.eu.org
Mon Jan 10 11:05:24 CET 2011


Author: nerville
Date: 2011-01-10 11:05:24 +0100 (Mon, 10 Jan 2011)
New Revision: 11952

Modified:
   branches/Branch_5_1/src/www/js/tooltips.js
   branches/Branch_5_1/src/www/jscook/ThemeXP/theme.css
Log:
port fix from trunk: tooltips if tipsy not available and theme

Modified: branches/Branch_5_1/src/www/js/tooltips.js
===================================================================
--- branches/Branch_5_1/src/www/js/tooltips.js	2011-01-10 10:04:51 UTC (rev 11951)
+++ branches/Branch_5_1/src/www/js/tooltips.js	2011-01-10 10:05:24 UTC (rev 11952)
@@ -1,15 +1,40 @@
+/**
+* FusionForge Tooltip
+*
+* Copyright 2010, Alain Peyrat
+* Copyright 2011, Franck Villaume - Capgemini
+* http://fusionforge.org
+*
+* This file is part of FusionForge.
+*
+* FusionForge is free software; you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation; either version 2 of the License, or
+* (at your option) any later version.
+*
+* FusionForge is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with FusionForge; if not, write to the Free Software
+* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+*/
+
 jQuery(function() {
+	if ( typeof(jQuery(window).tipsy) == 'function') {
+		jQuery('#tracker-monitor').tipsy({gravity: 'n', html: true, delayIn: 1000, delayOut: 500, fade: true});
+		jQuery('#tracker-summary').tipsy({gravity: 'w', delayIn: 1000, delayOut: 500, fade: true});
+		jQuery('#tracker-assigned_to').tipsy({gravity: 'w', delayIn: 1000, delayOut: 500, fade: true});
+		jQuery('#tracker-priority').tipsy({gravity: 'w', html: true, delayIn: 1000, delayOut: 500, fade: true});
+		jQuery('#tracker-status_id').tipsy({gravity: 'w', html: true, delayIn: 1000, delayOut: 500, fade: true});
+		jQuery('#tracker-description').tipsy({gravity: 'w', html: true, delayIn: 1000, delayOut: 500, fade: true});
+		jQuery('#tracker-canned_response').tipsy({gravity: 'w', html: true, delayIn: 1000, delayOut: 500, fade: true});
+		jQuery('#tracker-comment').tipsy({gravity: 'w', delayIn: 1000, delayOut: 500, fade: true});
+		jQuery('#tracker-new_artifact_type_id').tipsy({gravity: 'w', html:true, delayIn: 1000, delayOut: 500, fade: true});
 
-	jQuery('#tracker-monitor').tipsy({gravity: 'n', html: true, delayIn: 1000, delayOut: 500, fade: true});
-	jQuery('#tracker-summary').tipsy({gravity: 'w', delayIn: 1000, delayOut: 500, fade: true});
-	jQuery('#tracker-assigned_to').tipsy({gravity: 'w', delayIn: 1000, delayOut: 500, fade: true});
-	jQuery('#tracker-priority').tipsy({gravity: 'w', html: true, delayIn: 1000, delayOut: 500, fade: true});
-	jQuery('#tracker-status_id').tipsy({gravity: 'w', html: true, delayIn: 1000, delayOut: 500, fade: true});
-	jQuery('#tracker-description').tipsy({gravity: 'w', html: true, delayIn: 1000, delayOut: 500, fade: true});
-	jQuery('#tracker-canned_response').tipsy({gravity: 'w', html: true, delayIn: 1000, delayOut: 500, fade: true});
-	jQuery('#tracker-comment').tipsy({gravity: 'w', delayIn: 1000, delayOut: 500, fade: true});
-	jQuery('#tracker-new_artifact_type_id').tipsy({gravity: 'w', html:true, delayIn: 1000, delayOut: 500, fade: true});
-
-	jQuery('select.trove-nodes').tipsy({gravity: 'w', html:true, delayIn: 1000, delayOut: 500, fade: true});
-	jQuery('span.trove-nodes').tipsy({gravity: 'n', html:true, delayIn: 1000, delayOut: 500, fade: true});
+		jQuery('select.trove-nodes').tipsy({gravity: 'w', html:true, delayIn: 1000, delayOut: 500, fade: true});
+		jQuery('span.trove-nodes').tipsy({gravity: 'n', html:true, delayIn: 1000, delayOut: 500, fade: true});
+	}
 });

Modified: branches/Branch_5_1/src/www/jscook/ThemeXP/theme.css
===================================================================
--- branches/Branch_5_1/src/www/jscook/ThemeXP/theme.css	2011-01-10 10:04:51 UTC (rev 11951)
+++ branches/Branch_5_1/src/www/jscook/ThemeXP/theme.css	2011-01-10 10:05:24 UTC (rev 11952)
@@ -32,6 +32,8 @@
 
 	border:		0;
 	padding:	0;
+
+    margin-bottom:  0;
 }
 
 .ThemeXPRow,.ThemeXPRowHover,.ThemeXPRowActive,.ThemeXPRowSelected




More information about the Fusionforge-commits mailing list