# HG changeset patch # User Atul Varma # Date 1265842267 28800 # Node ID 26e0ce205a8f698331aa1a026c637351099a955a # Parent c1a987fe80443e430bca1f557a3d5dfe066ab513 Show more information if the CC license image is hovered-over. diff -r c1a987fe8044 -r 26e0ce205a8f css/ff-herdict-preso.css --- a/css/ff-herdict-preso.css Wed Feb 10 13:58:22 2010 -0800 +++ b/css/ff-herdict-preso.css Wed Feb 10 14:51:07 2010 -0800 @@ -61,6 +61,11 @@ display: none; } +#more-info { + font-size: 8pt; + display: none; +} + .button { color: gray; font-size: 9pt; diff -r c1a987fe8044 -r 26e0ce205a8f ff-herdict-preso.html --- a/ff-herdict-preso.html Wed Feb 10 13:58:22 2010 -0800 +++ b/ff-herdict-preso.html Wed Feb 10 14:51:07 2010 -0800 @@ -140,7 +140,8 @@

Click to show subtitles.

Click to hide subtitles.

-

Creative Commons License

+
Creative Commons License +
Firefox-Herdict Integration Pitch by Atul Varma is licensed under a Creative Commons Attribution 3.0 United States License.
diff -r c1a987fe8044 -r 26e0ce205a8f js/ff-herdict-preso.js --- a/js/ff-herdict-preso.js Wed Feb 10 13:58:22 2010 -0800 +++ b/js/ff-herdict-preso.js Wed Feb 10 14:51:07 2010 -0800 @@ -132,5 +132,9 @@ $("#subtitles").slideUp(); $(this).hide(); $("#show-subtitles").show(); - }); + }); + + // Display more license and author info when the license icon is + // moused-over. + $("#license").mouseenter(function() { $("#more-info").fadeIn(); }); });