Changeset 640889
- Timestamp:
- 12/18/2012 01:12:55 AM (13 years ago)
- Location:
- easy-faq-with-expanding-text
- Files:
-
- 15 added
- 3 edited
-
tags/3.1 (added)
-
tags/3.1/arrows.png (added)
-
tags/3.1/downarrow.png (added)
-
tags/3.1/faq.php (added)
-
tags/3.1/faq_checkbox.png (added)
-
tags/3.1/faq_heading.png (added)
-
tags/3.1/faq_title.png (added)
-
tags/3.1/faqmaker.js (added)
-
tags/3.1/faqstyle.css (added)
-
tags/3.1/minussign.png (added)
-
tags/3.1/none.png (added)
-
tags/3.1/plusminus.png (added)
-
tags/3.1/plussign.png (added)
-
tags/3.1/readme.txt (added)
-
tags/3.1/uparrow.png (added)
-
trunk/faq.php (modified) (1 diff)
-
trunk/faqmaker.js (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-faq-with-expanding-text/trunk/faq.php
r639887 r640889 3 3 Plugin Name: Easy FAQ with Expanding Text 4 4 Description: Easily create a Frequently Asked Questions page with answers that slide down when the questions are clicked. No need for a shortcode, HTML coding, or javascript tweaking. 5 Version: 3. 05 Version: 3.1 6 6 Author: bgentry 7 7 Author URI: http://bryangentry.us -
easy-faq-with-expanding-text/trunk/faqmaker.js
r639887 r640889 8 8 var halftextsize = parseInt(textsize)/2; 9 9 var backgroundpos = Math.round(halftextsize)-10; 10 jQuery(this).css({'background-position-y': backgroundpos}); 10 var padding = jQuery(this).css('padding-top'); 11 var padding = parseInt(padding); 12 var backgroundpos = Math.round(halftextsize)-10+padding; 11 13 console.log(textsize); 12 14 jQuery(this).click(function(){ -
easy-faq-with-expanding-text/trunk/readme.txt
r639887 r640889 4 4 Tags: faq pages 5 5 Tested up to: 3.5 6 Stable tag: 3. 06 Stable tag: 3.1 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 23 23 24 24 == Changelog == 25 26 = 3.1 = 27 * Very minor update to adjust the location of the arrows and other images that indicate that a heading has drop down text. Now those will be centered even in themes that assign padding to the top of those headings. 25 28 26 29 = 3.0 =
Note: See TracChangeset
for help on using the changeset viewer.