Created
November 13, 2012 15:58
-
-
Save wpsmith/4066550 to your computer and use it in GitHub Desktop.
JS: Resizes Genesis Content-Sidebar to Equal Heights (responsively)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_action( 'wp_enqueue_scripts', 'wps_enqueue_refooterwidgets' , 15 ); | |
| /* | |
| * Enqueue reFooterWidgets to the footer | |
| * | |
| */ | |
| function wps_enqueue_refooterwidgets() { | |
| wp_enqueue_script( 'wps-content-sidebar-size' , get_stylesheet_directory() . '/js/content-sidebar-size.js' , array( 'jquery' ), '1.0.0' , true ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment