Plugin Directory

Changeset 565664


Ignore:
Timestamp:
06/30/2012 01:51:48 AM (14 years ago)
Author:
remix4
Message:

1.4.1

Location:
floating-menu
Files:
30 added
2 edited

Legend:

Unmodified
Added
Removed
  • floating-menu/trunk/dcwp_floating_menu.php

    r467946 r565664  
    66        Description: Floating Menu creates a sticky, floating menu widget from any Wordpress custom menu using jQuery.
    77        Author: Lee Chestnutt
    8         Version: 1.4
     8        Version: 1.4.1
    99        Author URI: http://www.designchemical.com
    1010*/
     
    2020            // Header styles
    2121            add_action( 'wp_head', array('dc_jqfloatingmenu', 'header') );
    22             // Scripts
    23             wp_enqueue_script( 'jquery' );
    24             wp_enqueue_script( 'jqueryeasing', dc_jqfloatingmenu::get_plugin_directory() . '/js/jquery.easing.js', array('jquery') );
    25             wp_enqueue_script( 'jqueryhoverintent', dc_jqfloatingmenu::get_plugin_directory() . '/js/jquery.hoverIntent.minified.js', array('jquery') );
    26             wp_enqueue_script( 'dcjqfloatingmenu', dc_jqfloatingmenu::get_plugin_directory() . '/js/jquery.floater.2.2.js', array('jquery') );
     22           
    2723            // Shortcodes
    2824            add_shortcode( 'dcfl-link', 'dcfl_menu_link_shortcode' );
     
    3430
    3531    function header(){
    36         //echo "\n\t";
     32        // Scripts
     33            wp_enqueue_script( 'jquery' );
     34            wp_enqueue_script( 'jqueryeasing', dc_jqfloatingmenu::get_plugin_directory() . '/js/jquery.easing.js', array('jquery') );
     35            wp_enqueue_script( 'jqueryhoverintent', dc_jqfloatingmenu::get_plugin_directory() . '/js/jquery.hoverIntent.minified.js', array('jquery') );
     36            wp_enqueue_script( 'dcjqfloatingmenu', dc_jqfloatingmenu::get_plugin_directory() . '/js/jquery.floater.2.2.js', array('jquery') );
    3737    }
    3838   
  • floating-menu/trunk/readme.txt

    r467946 r565664  
    55Requires at least: 3.0
    66Tested up to: 3.10
    7 Stable tag: 1.4
     7Stable tag: 1.4.1
    88
    99Floating Menu creates a sticky, floating menu widget from any Wordpress custom menu using jQuery.
     
    6868== Changelog ==
    6969
     70= 1.4.1 =
     71* Update: change wp_enqueue_script to function
     72
    7073= 1.3 =
    7174* Added: option to position menu from center of browser window
Note: See TracChangeset for help on using the changeset viewer.