Changeset 565666
- Timestamp:
- 06/30/2012 01:58:21 AM (14 years ago)
- Location:
- jquery-vertical-mega-menu
- Files:
-
- 37 added
- 2 edited
-
tags/1.3.3 (added)
-
tags/1.3.3/css (added)
-
tags/1.3.3/css/dcverticalmegamenu.css (added)
-
tags/1.3.3/dcwp_jquery_vertical_mega_menu.php (added)
-
tags/1.3.3/dcwp_jquery_vertical_mega_menu_widget.php (added)
-
tags/1.3.3/js (added)
-
tags/1.3.3/js/jquery.dcverticalmegamenu.1.3.js (added)
-
tags/1.3.3/js/jquery.hoverIntent.minified.js (added)
-
tags/1.3.3/readme.txt (added)
-
tags/1.3.3/screenshot-1.png (added)
-
tags/1.3.3/screenshot-2.png (added)
-
tags/1.3.3/screenshot-3.png (added)
-
tags/1.3.3/screenshot-4.png (added)
-
tags/1.3.3/skin.php (added)
-
tags/1.3.3/skins (added)
-
tags/1.3.3/skins/black.css (added)
-
tags/1.3.3/skins/blue.css (added)
-
tags/1.3.3/skins/green.css (added)
-
tags/1.3.3/skins/grey.css (added)
-
tags/1.3.3/skins/images (added)
-
tags/1.3.3/skins/images/arrow_off.png (added)
-
tags/1.3.3/skins/images/arrow_on.png (added)
-
tags/1.3.3/skins/images/arrow_side.png (added)
-
tags/1.3.3/skins/images/bg_black.png (added)
-
tags/1.3.3/skins/images/bg_blue.png (added)
-
tags/1.3.3/skins/images/bg_grad.png (added)
-
tags/1.3.3/skins/images/bg_green.png (added)
-
tags/1.3.3/skins/images/bg_grey.png (added)
-
tags/1.3.3/skins/images/bg_light_blue.png (added)
-
tags/1.3.3/skins/images/bg_mega_hdr.png (added)
-
tags/1.3.3/skins/images/bg_orange.png (added)
-
tags/1.3.3/skins/images/bg_red.png (added)
-
tags/1.3.3/skins/images/bg_white.png (added)
-
tags/1.3.3/skins/light_blue.css (added)
-
tags/1.3.3/skins/orange.css (added)
-
tags/1.3.3/skins/red.css (added)
-
tags/1.3.3/skins/white.css (added)
-
trunk/dcwp_jquery_vertical_mega_menu.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jquery-vertical-mega-menu/trunk/dcwp_jquery_vertical_mega_menu.php
r422986 r565666 6 6 Description: Creates a widget, which allows you to add vertical mega menus to your side columns using any Wordpress custom menu. 7 7 Author: Lee Chestnutt 8 Version: 1.3. 28 Version: 1.3.3 9 9 Author URI: http://www.designchemical.com 10 10 */ … … 20 20 // Header styles 21 21 add_action( 'wp_head', array('dc_jqverticalmegamenu', 'header') ); 22 // Scripts 23 wp_enqueue_script( 'jquery' ); 24 wp_enqueue_script( 'jqueryhoverintent', dc_jqverticalmegamenu::get_plugin_directory() . '/js/jquery.hoverIntent.minified.js', array('jquery') ); 25 wp_enqueue_script( 'dcjqverticalmegamenu', dc_jqverticalmegamenu::get_plugin_directory() . '/js/jquery.dcverticalmegamenu.1.3.js', array('jquery') ); 22 26 23 } 27 24 add_action( 'wp_footer', array('dc_jqverticalmegamenu', 'footer') ); … … 32 29 function header(){ 33 30 echo "\n\t<link rel=\"stylesheet\" type=\"text/css\" href=\"".dc_jqverticalmegamenu::get_plugin_directory()."/css/dcverticalmegamenu.css\" media=\"screen\" />"; 31 32 // Scripts 33 wp_enqueue_script( 'jquery' ); 34 wp_enqueue_script( 'jqueryhoverintent', dc_jqverticalmegamenu::get_plugin_directory() . '/js/jquery.hoverIntent.minified.js', array('jquery') ); 35 wp_enqueue_script( 'dcjqverticalmegamenu', dc_jqverticalmegamenu::get_plugin_directory() . '/js/jquery.dcverticalmegamenu.1.3.js', array('jquery') ); 36 34 37 } 35 38 -
jquery-vertical-mega-menu/trunk/readme.txt
r422986 r565666 5 5 Requires at least: 3.0 6 6 Tested up to: 3.1 7 Stable tag: 1.3. 27 Stable tag: 1.3.3 8 8 9 9 Creates a widget, which allows you to add vertical mega menus to your side columns using any Wordpress custom menu. … … 65 65 == Changelog == 66 66 67 = 1.3.3 = 68 * Update: change wp_enqueue_script to function 69 67 70 = 1.3.2 = 68 71 * Fixed: Error with default values
Note: See TracChangeset
for help on using the changeset viewer.