Plugin Directory

Changeset 611669


Ignore:
Timestamp:
10/12/2012 07:46:05 PM (13 years ago)
Author:
itscoolreally
Message:

corrected readme file, implemented jquery encapsulation

Location:
ribbon-maker
Files:
2 added
2 edited
5 copied

Legend:

Unmodified
Added
Removed
  • ribbon-maker/tags/1.6/readme.txt

    r593071 r611669  
    55Requires at Least: 3.0.0
    66Tested Up To: 3.4.1
    7 Stable tag: 1.5
     7Stable tag: 1.6
    88
    99Make your own ribbon now without waiting for a plugin designer to do it for you.
     
    1414
    1515= Features =
    16 * All of the features of the static corner ribbons.
     16* All of the features of the static corner ribbons
    1717* Set the Message
    18 * Set the Link
    1918* Set the Link
    2019* Set the Title (hover message)
     
    2928
    3029**Now with added JSColor color picker!**
     30***Our plugin now loads with JQuery No-Conflict mode!***
    3131
    3232== Installation ==
     
    34341. Download the plugin zip archive.
    35351. Extract it in your `wp-content/plugins` folder or upload via admin panel.
    36 1. Browse to your plugins section and active the plugin.
     361. Browse to your plugins section and activate the plugin.
    3737
     38- OR -
     39
     40Install it via the plugin manager.
    3841== Screenshots ==
    39421. Preview Section of configuration with 4 ribbons displayed.
     
    4245
    4346== Changelog ==
     47= 1.6 =
     48Added JQuery No-Conflict mode wrappers to prevent collision with the wrong versions of JQuery both internally and externally.
     49
    4450= 1.5 =
    4551Added the ability to fade out banners and graphics for any amount of time. Corrected last versioning snafu!
     
    99105
    100106== Upgrade Notice ==
     107= 1.6 =
     108Are you having problems with JQuery conflicts? Then this upgrade ensures that we are not in that problem scenario.
     109
    101110= 1.5 =
    102111Would 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  
    55Description: When activated, this plugin will put a ribbon of your design, message and custom link on the top right corner of your website.
    66Author: Al Lamb
    7 Version: 1.5
     7Version: 1.6
    88License: GPLv2
    99Author URI: http://bowie-tx.com
     
    1111
    1212function ribbon_maker_getVersion() {
    13     return "1.5";
     13    return "1.6";
    1414}
    1515
     
    382382        'ribbon_maker_jquery',
    383383        plugins_url('jquery-1.8.1.js', __FILE__)
     384    );
     385    wp_enqueue_script(
     386        'ribbon_maker_grab_jquery',
     387        plugins_url('ourJquery.js', __FILE__)
    384388    );
    385389}   
     
    435439        if($timeout>0)
    436440            echo "<script type=\"text/javascript\">
    437               $(document).ready(function(){
     441              ourJquery(document).ready(function(){
    438442               setTimeout(function(){
    439               $(\"div.$mydiv\").fadeOut(\"slow\", function () {
    440               $(\"div.$mydiv\").remove();
     443              ourJquery(\"div.$mydiv\").fadeOut(\"slow\", function () {
     444              ourJquery(\"div.$mydiv\").remove();
    441445                  });
    442446               
  • ribbon-maker/trunk/readme.txt

    r593071 r611669  
    55Requires at Least: 3.0.0
    66Tested Up To: 3.4.1
    7 Stable tag: 1.5
     7Stable tag: 1.6
    88
    99Make your own ribbon now without waiting for a plugin designer to do it for you.
     
    1414
    1515= Features =
    16 * All of the features of the static corner ribbons.
     16* All of the features of the static corner ribbons
    1717* Set the Message
    18 * Set the Link
    1918* Set the Link
    2019* Set the Title (hover message)
     
    2928
    3029**Now with added JSColor color picker!**
     30***Our plugin now loads with JQuery No-Conflict mode!***
    3131
    3232== Installation ==
     
    34341. Download the plugin zip archive.
    35351. Extract it in your `wp-content/plugins` folder or upload via admin panel.
    36 1. Browse to your plugins section and active the plugin.
     361. Browse to your plugins section and activate the plugin.
    3737
     38- OR -
     39
     40Install it via the plugin manager.
    3841== Screenshots ==
    39421. Preview Section of configuration with 4 ribbons displayed.
     
    4245
    4346== Changelog ==
     47= 1.6 =
     48Added JQuery No-Conflict mode wrappers to prevent collision with the wrong versions of JQuery both internally and externally.
     49
    4450= 1.5 =
    4551Added the ability to fade out banners and graphics for any amount of time. Corrected last versioning snafu!
     
    99105
    100106== Upgrade Notice ==
     107= 1.6 =
     108Are you having problems with JQuery conflicts? Then this upgrade ensures that we are not in that problem scenario.
     109
    101110= 1.5 =
    102111Would 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  
    55Description: When activated, this plugin will put a ribbon of your design, message and custom link on the top right corner of your website.
    66Author: Al Lamb
    7 Version: 1.5
     7Version: 1.6
    88License: GPLv2
    99Author URI: http://bowie-tx.com
     
    1111
    1212function ribbon_maker_getVersion() {
    13     return "1.5";
     13    return "1.6";
    1414}
    1515
     
    382382        'ribbon_maker_jquery',
    383383        plugins_url('jquery-1.8.1.js', __FILE__)
     384    );
     385    wp_enqueue_script(
     386        'ribbon_maker_grab_jquery',
     387        plugins_url('ourJquery.js', __FILE__)
    384388    );
    385389}   
     
    435439        if($timeout>0)
    436440            echo "<script type=\"text/javascript\">
    437               $(document).ready(function(){
     441              ourJquery(document).ready(function(){
    438442               setTimeout(function(){
    439               $(\"div.$mydiv\").fadeOut(\"slow\", function () {
    440               $(\"div.$mydiv\").remove();
     443              ourJquery(\"div.$mydiv\").fadeOut(\"slow\", function () {
     444              ourJquery(\"div.$mydiv\").remove();
    441445                  });
    442446               
Note: See TracChangeset for help on using the changeset viewer.