Changeset 820690
- Timestamp:
- 12/13/2013 04:31:22 AM (12 years ago)
- Location:
- easy-faq-with-expanding-text
- Files:
-
- 15 added
- 3 edited
-
tags/3.2.4 (added)
-
tags/3.2.4/arrows.png (added)
-
tags/3.2.4/downarrow.png (added)
-
tags/3.2.4/faq.php (added)
-
tags/3.2.4/faq_checkbox.png (added)
-
tags/3.2.4/faq_heading.png (added)
-
tags/3.2.4/faq_title.png (added)
-
tags/3.2.4/faqmaker.js (added)
-
tags/3.2.4/faqstyle.css (added)
-
tags/3.2.4/minussign.png (added)
-
tags/3.2.4/none.png (added)
-
tags/3.2.4/plusminus.png (added)
-
tags/3.2.4/plussign.png (added)
-
tags/3.2.4/readme.txt (added)
-
tags/3.2.4/uparrow.png (added)
-
trunk/faq.php (modified) (1 diff)
-
trunk/faqmaker.js (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-faq-with-expanding-text/trunk/faq.php
r800775 r820690 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.2. 35 Version: 3.2.4 6 6 Author: bgentry 7 7 Author URI: http://bryangentry.us -
easy-faq-with-expanding-text/trunk/faqmaker.js
r800775 r820690 6 6 7 7 8 $(this).children(' :header:not(h6)').each(function(){ // select all the heading in .bg_faq_content_section other than h6 9 $(this).addClass('bg_faq_closed'); //make these heading "closed" 8 $(this).find(' :header:not(h6)').each(function(){ // select all the heading in .bg_faq_content_section other than h6 9 if ( !$(this).hasClass('bg_faq_closed')) { 10 $(this).addClass('bg_faq_closed'); //make these heading "closed" 10 11 $(this).attr('data-foldupq', foldup); 11 12 $(this).nextUntil(':header').css({'display':'none'}); //hide everything up until the next heading … … 40 41 41 42 }) 42 43 } 43 44 }); 44 45 -
easy-faq-with-expanding-text/trunk/readme.txt
r800775 r820690 3 3 Donate link: http://bryangentry.us/pay-me 4 4 Tags: faq pages 5 Tested up to: 3. 7.16 Stable tag: 3.2. 35 Tested up to: 3.8 6 Stable tag: 3.2.4 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.2.4= 27 * Updated javascript to restore ability to apply the animated effects to headings that are in tables or within other elements. 25 28 26 29 =3.2.3 =
Note: See TracChangeset
for help on using the changeset viewer.