Changeset 611669
- Timestamp:
- 10/12/2012 07:46:05 PM (13 years ago)
- Location:
- ribbon-maker
- Files:
-
- 2 added
- 2 edited
- 5 copied
-
tags/1.6 (copied) (copied from ribbon-maker/trunk)
-
tags/1.6/cookies.js (copied) (copied from ribbon-maker/trunk/cookies.js)
-
tags/1.6/jquery-1.8.1.js (copied) (copied from ribbon-maker/trunk/jquery-1.8.1.js)
-
tags/1.6/ourJquery.js (added)
-
tags/1.6/readme.txt (copied) (copied from ribbon-maker/trunk/readme.txt) (6 diffs)
-
tags/1.6/ribbon-maker.php (copied) (copied from ribbon-maker/trunk/ribbon-maker.php) (4 diffs)
-
trunk/ourJquery.js (added)
-
trunk/readme.txt (modified) (6 diffs)
-
trunk/ribbon-maker.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ribbon-maker/tags/1.6/readme.txt
r593071 r611669 5 5 Requires at Least: 3.0.0 6 6 Tested Up To: 3.4.1 7 Stable tag: 1. 57 Stable tag: 1.6 8 8 9 9 Make your own ribbon now without waiting for a plugin designer to do it for you. … … 14 14 15 15 = Features = 16 * All of the features of the static corner ribbons .16 * All of the features of the static corner ribbons 17 17 * Set the Message 18 * Set the Link19 18 * Set the Link 20 19 * Set the Title (hover message) … … 29 28 30 29 **Now with added JSColor color picker!** 30 ***Our plugin now loads with JQuery No-Conflict mode!*** 31 31 32 32 == Installation == … … 34 34 1. Download the plugin zip archive. 35 35 1. Extract it in your `wp-content/plugins` folder or upload via admin panel. 36 1. Browse to your plugins section and activ e the plugin.36 1. Browse to your plugins section and activate the plugin. 37 37 38 - OR - 39 40 Install it via the plugin manager. 38 41 == Screenshots == 39 42 1. Preview Section of configuration with 4 ribbons displayed. … … 42 45 43 46 == Changelog == 47 = 1.6 = 48 Added JQuery No-Conflict mode wrappers to prevent collision with the wrong versions of JQuery both internally and externally. 49 44 50 = 1.5 = 45 51 Added the ability to fade out banners and graphics for any amount of time. Corrected last versioning snafu! … … 99 105 100 106 == Upgrade Notice == 107 = 1.6 = 108 Are you having problems with JQuery conflicts? Then this upgrade ensures that we are not in that problem scenario. 109 101 110 = 1.5 = 102 111 Would you like to have your banners and custom graphics to automatically disappear after a set amount of time? Sure you do! -
ribbon-maker/tags/1.6/ribbon-maker.php
r593071 r611669 5 5 Description: When activated, this plugin will put a ribbon of your design, message and custom link on the top right corner of your website. 6 6 Author: Al Lamb 7 Version: 1. 57 Version: 1.6 8 8 License: GPLv2 9 9 Author URI: http://bowie-tx.com … … 11 11 12 12 function ribbon_maker_getVersion() { 13 return "1. 5";13 return "1.6"; 14 14 } 15 15 … … 382 382 'ribbon_maker_jquery', 383 383 plugins_url('jquery-1.8.1.js', __FILE__) 384 ); 385 wp_enqueue_script( 386 'ribbon_maker_grab_jquery', 387 plugins_url('ourJquery.js', __FILE__) 384 388 ); 385 389 } … … 435 439 if($timeout>0) 436 440 echo "<script type=\"text/javascript\"> 437 $(document).ready(function(){441 ourJquery(document).ready(function(){ 438 442 setTimeout(function(){ 439 $(\"div.$mydiv\").fadeOut(\"slow\", function () {440 $(\"div.$mydiv\").remove();443 ourJquery(\"div.$mydiv\").fadeOut(\"slow\", function () { 444 ourJquery(\"div.$mydiv\").remove(); 441 445 }); 442 446 -
ribbon-maker/trunk/readme.txt
r593071 r611669 5 5 Requires at Least: 3.0.0 6 6 Tested Up To: 3.4.1 7 Stable tag: 1. 57 Stable tag: 1.6 8 8 9 9 Make your own ribbon now without waiting for a plugin designer to do it for you. … … 14 14 15 15 = Features = 16 * All of the features of the static corner ribbons .16 * All of the features of the static corner ribbons 17 17 * Set the Message 18 * Set the Link19 18 * Set the Link 20 19 * Set the Title (hover message) … … 29 28 30 29 **Now with added JSColor color picker!** 30 ***Our plugin now loads with JQuery No-Conflict mode!*** 31 31 32 32 == Installation == … … 34 34 1. Download the plugin zip archive. 35 35 1. Extract it in your `wp-content/plugins` folder or upload via admin panel. 36 1. Browse to your plugins section and activ e the plugin.36 1. Browse to your plugins section and activate the plugin. 37 37 38 - OR - 39 40 Install it via the plugin manager. 38 41 == Screenshots == 39 42 1. Preview Section of configuration with 4 ribbons displayed. … … 42 45 43 46 == Changelog == 47 = 1.6 = 48 Added JQuery No-Conflict mode wrappers to prevent collision with the wrong versions of JQuery both internally and externally. 49 44 50 = 1.5 = 45 51 Added the ability to fade out banners and graphics for any amount of time. Corrected last versioning snafu! … … 99 105 100 106 == Upgrade Notice == 107 = 1.6 = 108 Are you having problems with JQuery conflicts? Then this upgrade ensures that we are not in that problem scenario. 109 101 110 = 1.5 = 102 111 Would you like to have your banners and custom graphics to automatically disappear after a set amount of time? Sure you do! -
ribbon-maker/trunk/ribbon-maker.php
r593071 r611669 5 5 Description: When activated, this plugin will put a ribbon of your design, message and custom link on the top right corner of your website. 6 6 Author: Al Lamb 7 Version: 1. 57 Version: 1.6 8 8 License: GPLv2 9 9 Author URI: http://bowie-tx.com … … 11 11 12 12 function ribbon_maker_getVersion() { 13 return "1. 5";13 return "1.6"; 14 14 } 15 15 … … 382 382 'ribbon_maker_jquery', 383 383 plugins_url('jquery-1.8.1.js', __FILE__) 384 ); 385 wp_enqueue_script( 386 'ribbon_maker_grab_jquery', 387 plugins_url('ourJquery.js', __FILE__) 384 388 ); 385 389 } … … 435 439 if($timeout>0) 436 440 echo "<script type=\"text/javascript\"> 437 $(document).ready(function(){441 ourJquery(document).ready(function(){ 438 442 setTimeout(function(){ 439 $(\"div.$mydiv\").fadeOut(\"slow\", function () {440 $(\"div.$mydiv\").remove();443 ourJquery(\"div.$mydiv\").fadeOut(\"slow\", function () { 444 ourJquery(\"div.$mydiv\").remove(); 441 445 }); 442 446
Note: See TracChangeset
for help on using the changeset viewer.