Collapse-O-Matic - Version 1.3.1

Version Description

  • Added the hover style to pimp the element style when moused over.
Download this release

Release Info

Developer baden03
Plugin Icon 128x128 Collapse-O-Matic
Version 1.3.1
Comparing to
See all releases

Code changes from version 1.3 to 1.3.1

Files changed (4) hide show
  1. collapse-o-matic.php +2 -2
  2. collapse.js +8 -0
  3. readme.txt +8 -2
  4. style.css +3 -0
collapse-o-matic.php CHANGED
@@ -3,13 +3,13 @@
3
  Plugin Name: jQuery Collapse-O-Matic
4
  Plugin URI: http://www.twinpictures.de/jquery-collapse-o-matic-1-3/
5
  Description: Collapse-O-Matic adds an `[expand]` shortcode that wraps content into a lovely, jQuery collapsible div.
6
- Version: 1.3
7
  Author: Twinpictures
8
  Author URI: http://www.twinpictures.de
9
  License: GPL2
10
  */
11
 
12
- /* Copyright 2010 Twinpictures (www.twinpictures.de)
13
 
14
  This program is free software; you can redistribute it and/or modify
15
  it under the terms of the GNU General Public License, version 2, as
3
  Plugin Name: jQuery Collapse-O-Matic
4
  Plugin URI: http://www.twinpictures.de/jquery-collapse-o-matic-1-3/
5
  Description: Collapse-O-Matic adds an `[expand]` shortcode that wraps content into a lovely, jQuery collapsible div.
6
+ Version: 1.3.1
7
  Author: Twinpictures
8
  Author URI: http://www.twinpictures.de
9
  License: GPL2
10
  */
11
 
12
+ /* Copyright 2011 Twinpictures (www.twinpictures.de)
13
 
14
  This program is free software; you can redistribute it and/or modify
15
  it under the terms of the GNU General Public License, version 2, as
collapse.js CHANGED
@@ -25,6 +25,14 @@
25
  */
26
 
27
  jQuery(document).ready(function() {
 
 
 
 
 
 
 
 
28
  jQuery('.collapseomatic').click(function() {
29
  //alert('phones ringin dude');
30
  jQuery(this).toggleClass('close');
25
  */
26
 
27
  jQuery(document).ready(function() {
28
+ jQuery('.collapseomatic').hover(function () {
29
+ jQuery(this).addClass("hover");
30
+ },
31
+ function () {
32
+ jQuery(this).removeClass("hover");
33
+ }
34
+ );
35
+
36
  jQuery('.collapseomatic').click(function() {
37
  //alert('phones ringin dude');
38
  jQuery(this).toggleClass('close');
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: http://www.twinpictures.de/collapse-o-matic/
5
  Tags: collapse, expand, collapsible, expandable, content, shortcode, hidden, jQuery, javascript, twinpictures
6
  Requires at least: 2.8
7
  Tested up to: 3.1
8
- Stable tag: 1.3
9
 
10
  Collapse-O-Matic adds an `[expand]` shortcode that wraps any object or content--including other shortcodes--into a lovely jQuery collapsible div.
11
 
@@ -21,7 +21,7 @@ Collapse-O-Matic adds an `[expand title="trigger text"]hidden content[/expand]`
21
  1. Test that the this plugin meets your demanding needs.
22
  1. Tweek the CSS to match your flavor.
23
  1. Rate the plugin and verify if it works at wordpress.org.
24
- 1. Leave a comment regarding bugs, feature request, cocktail recipes at http://www.twinpictures.de/collapse-o-matic/
25
 
26
  == Frequently Asked Questions ==
27
 
@@ -38,6 +38,9 @@ No. Not even close.
38
 
39
  == Changelog ==
40
 
 
 
 
41
  = 1.3 =
42
  * Added the rel attribute to deal with grouping collpase elements.
43
  * Added the trigclass and targclass attributes.
@@ -60,6 +63,9 @@ No. Not even close.
60
 
61
  == Upgrade Notice ==
62
 
 
 
 
63
  = 1.3 =
64
  Collapse-O-Matic has been significantly advanced. Elements can now be grouped together.
65
 
5
  Tags: collapse, expand, collapsible, expandable, content, shortcode, hidden, jQuery, javascript, twinpictures
6
  Requires at least: 2.8
7
  Tested up to: 3.1
8
+ Stable tag: 1.3.1
9
 
10
  Collapse-O-Matic adds an `[expand]` shortcode that wraps any object or content--including other shortcodes--into a lovely jQuery collapsible div.
11
 
21
  1. Test that the this plugin meets your demanding needs.
22
  1. Tweek the CSS to match your flavor.
23
  1. Rate the plugin and verify if it works at wordpress.org.
24
+ 1. Leave a comment regarding bugs, feature request, cocktail recipes at http://www.twinpictures.de/jquery-collapse-o-matic-1-3/
25
 
26
  == Frequently Asked Questions ==
27
 
38
 
39
  == Changelog ==
40
 
41
+ = 1.3.1 =
42
+ * Added the hover style to pimp the element style when moused over.
43
+
44
  = 1.3 =
45
  * Added the rel attribute to deal with grouping collpase elements.
46
  * Added the trigclass and targclass attributes.
63
 
64
  == Upgrade Notice ==
65
 
66
+ = 1.3.1 =
67
+ Hover style added.
68
+
69
  = 1.3 =
70
  Collapse-O-Matic has been significantly advanced. Elements can now be grouped together.
71
 
style.css CHANGED
@@ -4,6 +4,9 @@
4
  padding: 0 0 10px 16px;
5
  cursor: pointer;
6
  }
 
 
 
7
  .close {
8
  background-image:url(images/arrow-up.png) !important;
9
  }
4
  padding: 0 0 10px 16px;
5
  cursor: pointer;
6
  }
7
+ .hover {
8
+ text-decoration: underline;
9
+ }
10
  .close {
11
  background-image:url(images/arrow-up.png) !important;
12
  }