Plugin Directory

Changeset 1428691


Ignore:
Timestamp:
06/01/2016 10:27:15 PM (10 years ago)
Author:
NewMediaOne
Message:

tagging 3.2.1

Location:
geodigs
Files:
22 deleted
6 edited
56 copied

Legend:

Unmodified
Added
Removed
  • geodigs/tags/3.2.1/geodigs.php

    r1428619 r1428691  
    22/**
    33 * Plugin Name: GeoDigs
    4  * Version: 3.2
     4 * Version: 3.2.1
    55 * Author: New Media One
    66 * Author URI: www.newmediaone.net
  • geodigs/tags/3.2.1/readme.txt

    r1428619 r1428691  
    44Requires at least: 3.5
    55Tested up to: 4.5
    6 Stable tag: 3.2
     6Stable tag: 3.2.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8383
    8484== Changelog ==
     85
     86= 3.2.1 =
     87* Fixes issue where the necessary JavaScript files weren't being enqueued with the Quick Search and Mortgage Calculator widgets
    8588
    8689= 3.2 =
  • geodigs/tags/3.2.1/widgets/mortgage-calculator-modal.php

    r1428019 r1428691  
    2121     */
    2222    public function widget( $args, $instance ) {
     23        wp_enqueue_script( 'gd_mortgage_calculator' );
     24
    2325        echo '<div class="gd-mortgage-calculator-modal-widget">';
    2426        // outputs the content of the widget
  • geodigs/tags/3.2.1/widgets/mortgage-calculator.php

    r1428019 r1428691  
    2121     */
    2222    public function widget( $args, $instance ) {
     23        wp_enqueue_script( 'gd_mortgage_calculator' );
     24       
    2325        echo '<div class="widget gd-mortgage-calculator-widget">';
    2426        echo do_shortcode( '[gd_mortgage_calculator]' );
  • geodigs/tags/3.2.1/widgets/quick-search-modal.php

    r1428019 r1428691  
    2121     */
    2222    public function widget( $args, $instance ) {
     23        wp_enqueue_script( 'gd_quick_search' );
     24       
    2325        echo '<div class="gd-quick-search-modal-widget">';
    2426        // outputs the content of the widget
  • geodigs/tags/3.2.1/widgets/quick-search.php

    r1428019 r1428691  
    2121     */
    2222    public function widget( $args, $instance ) {
     23        wp_enqueue_script( 'gd_quick_search' );
     24       
    2325        // outputs the content of the widget
    2426        echo '<div class="widget gd-quick-search-widget">';
  • geodigs/trunk/geodigs.php

    r1428619 r1428691  
    22/**
    33 * Plugin Name: GeoDigs
    4  * Version: 3.2
     4 * Version: 3.2.1
    55 * Author: New Media One
    66 * Author URI: www.newmediaone.net
  • geodigs/trunk/readme.txt

    r1428619 r1428691  
    44Requires at least: 3.5
    55Tested up to: 4.5
    6 Stable tag: 3.2
     6Stable tag: 3.2.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8383
    8484== Changelog ==
     85
     86= 3.2.1 =
     87* Fixes issue where the necessary JavaScript files weren't being enqueued with the Quick Search and Mortgage Calculator widgets
    8588
    8689= 3.2 =
  • geodigs/trunk/widgets/mortgage-calculator-modal.php

    r1428019 r1428691  
    2121     */
    2222    public function widget( $args, $instance ) {
     23        wp_enqueue_script( 'gd_mortgage_calculator' );
     24
    2325        echo '<div class="gd-mortgage-calculator-modal-widget">';
    2426        // outputs the content of the widget
  • geodigs/trunk/widgets/mortgage-calculator.php

    r1428019 r1428691  
    2121     */
    2222    public function widget( $args, $instance ) {
     23        wp_enqueue_script( 'gd_mortgage_calculator' );
     24       
    2325        echo '<div class="widget gd-mortgage-calculator-widget">';
    2426        echo do_shortcode( '[gd_mortgage_calculator]' );
  • geodigs/trunk/widgets/quick-search-modal.php

    r1428019 r1428691  
    2121     */
    2222    public function widget( $args, $instance ) {
     23        wp_enqueue_script( 'gd_quick_search' );
     24       
    2325        echo '<div class="gd-quick-search-modal-widget">';
    2426        // outputs the content of the widget
  • geodigs/trunk/widgets/quick-search.php

    r1428019 r1428691  
    2121     */
    2222    public function widget( $args, $instance ) {
     23        wp_enqueue_script( 'gd_quick_search' );
     24       
    2325        // outputs the content of the widget
    2426        echo '<div class="widget gd-quick-search-widget">';
Note: See TracChangeset for help on using the changeset viewer.