Plugin Directory

Changeset 564786


Ignore:
Timestamp:
06/27/2012 10:32:37 PM (14 years ago)
Author:
stresslimit
Message:

check in 2.1.1 with js namespace addition

Location:
editorial-calendar
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • editorial-calendar/tags/2.1.1/edcal.php

    r561881 r564786  
    1919Plugin Name: WordPress Editorial Calendar
    2020Description: The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
    21 Version: 2.1
     21Version: 2.1.1
    2222Author: Colin Vernon, Justin Evans, Joachim Kudish, Mary Vogt, and Zack Grossbart
    2323Author URI: http://www.zackgrossbart.com
     
    507507         * the locale for the other strings.
    508508         */
    509         wp_enqueue_script( "date", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/languages/date-".__('en-US', 'editorial-calendar').".js"), array( 'jquery' ) );
    510509        wp_enqueue_script( 'jquery' );
    511510        wp_enqueue_script( 'jquery-ui-draggable' );
     
    514513        //wp_enqueue_script( "date-extras", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/date.extras.js"), array( 'jquery' ) );
    515514   
     515        wp_enqueue_script( "edcal-date", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/languages/date-".__('en-US', 'editorial-calendar').".js"), array( 'jquery' ) );
    516516        wp_enqueue_script( "edcal-lib", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/edcallib.min.js"), array( 'jquery' ) );
    517517   
  • editorial-calendar/tags/2.1.1/readme.txt

    r562013 r564786  
    44Requires at least: 2.8.5
    55Tested up to: 3.4
    6 Stable tag: 2.1
     6Stable tag: 2.1.1
    77
    88The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
     
    173173
    174174== Changelog ==
     175
     176= 2.1.1 =
     177
     178Added a namespace to fix a small issue of potential javascript file conflict with wp_enqueue_script()
    175179
    176180= 2.1 =
  • editorial-calendar/trunk/edcal.php

    r561881 r564786  
    1919Plugin Name: WordPress Editorial Calendar
    2020Description: The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
    21 Version: 2.1
     21Version: 2.1.1
    2222Author: Colin Vernon, Justin Evans, Joachim Kudish, Mary Vogt, and Zack Grossbart
    2323Author URI: http://www.zackgrossbart.com
     
    507507         * the locale for the other strings.
    508508         */
    509         wp_enqueue_script( "date", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/languages/date-".__('en-US', 'editorial-calendar').".js"), array( 'jquery' ) );
    510509        wp_enqueue_script( 'jquery' );
    511510        wp_enqueue_script( 'jquery-ui-draggable' );
     
    514513        //wp_enqueue_script( "date-extras", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/date.extras.js"), array( 'jquery' ) );
    515514   
     515        wp_enqueue_script( "edcal-date", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/languages/date-".__('en-US', 'editorial-calendar').".js"), array( 'jquery' ) );
    516516        wp_enqueue_script( "edcal-lib", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ ) )."/lib/edcallib.min.js"), array( 'jquery' ) );
    517517   
  • editorial-calendar/trunk/readme.txt

    r562013 r564786  
    44Requires at least: 2.8.5
    55Tested up to: 3.4
    6 Stable tag: 2.1
     6Stable tag: 2.1.1
    77
    88The Editorial Calendar makes it possible to see all your posts and drag and drop them to manage your blog.
     
    173173
    174174== Changelog ==
     175
     176= 2.1.1 =
     177
     178Added a namespace to fix a small issue of potential javascript file conflict with wp_enqueue_script()
    175179
    176180= 2.1 =
Note: See TracChangeset for help on using the changeset viewer.