Plugin Directory

Changeset 1092709


Ignore:
Timestamp:
02/17/2015 07:04:33 PM (11 years ago)
Author:
JHipkin
Message:

tagging version 1.0.9 to clean up enqueueing of admin scripts

Location:
tracking-script-manager
Files:
5 edited
1 copied

Legend:

Unmodified
Added
Removed
  • tracking-script-manager/tags/1.0.8/tracking-scripts.php

    r1092690 r1092709  
    44    * Plugin URI: http://wordpress.org/plugins/tracking-script-manager/
    55    * Description: A plugin that allows you to add tracking scripts to your site.
    6     * Version: 1.0.8
     6    * Version: 1.0.9
    77    * Author: Red8 Interactive
    88    * Author URI: http://red8interactive.com
     
    101101                add_menu_page('Tracking Scripts', 'Tracking Scripts', 'administrator', __FILE__, array(__CLASS__, 'tracking_options'), '');
    102102                add_action('admin_init', array(__CLASS__, 'register_tracking_scripts_settings'));
    103                 add_action('admin_enqueue_scripts', array(__CLASS__, 'tracking_scripts_admin_scripts'));
    104103            }
    105104           
     
    121120           
    122121            public static function tracking_options() {
     122                self::tracking_scripts_admin_scripts();
     123               
    123124                global $pagenow;
    124125                $settings = get_option('tracking_scripts_settings');
  • tracking-script-manager/tags/1.0.9/readme.txt

    r1092690 r1092709  
    55Requires at least: 3.0.1
    66Tested up to: 4.0
    7 Stable tag: 1.0.8
     7Stable tag: 1.0.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4343== Changelog ==
    4444
     45= 1.0.9 =
     46* Cleaning up script enqueuing
     47
    4548= 1.0.8 =
    4649* Fixed issues causing some conflicts with WP styling
     
    7275== Upgrade Notice ==
    7376
     77= 1.0.9 =
     78Cleaning up script enqueuing
     79
    7480= 1.0.8 =
    7581Fixed issues causing some conflicts with WP styling
  • tracking-script-manager/tags/1.0.9/tracking-scripts.php

    r1092690 r1092709  
    44    * Plugin URI: http://wordpress.org/plugins/tracking-script-manager/
    55    * Description: A plugin that allows you to add tracking scripts to your site.
    6     * Version: 1.0.8
     6    * Version: 1.0.9
    77    * Author: Red8 Interactive
    88    * Author URI: http://red8interactive.com
     
    101101                add_menu_page('Tracking Scripts', 'Tracking Scripts', 'administrator', __FILE__, array(__CLASS__, 'tracking_options'), '');
    102102                add_action('admin_init', array(__CLASS__, 'register_tracking_scripts_settings'));
    103                 add_action('admin_enqueue_scripts', array(__CLASS__, 'tracking_scripts_admin_scripts'));
    104103            }
    105104           
     
    121120           
    122121            public static function tracking_options() {
     122                self::tracking_scripts_admin_scripts();
     123               
    123124                global $pagenow;
    124125                $settings = get_option('tracking_scripts_settings');
  • tracking-script-manager/trunk/readme.txt

    r1092690 r1092709  
    55Requires at least: 3.0.1
    66Tested up to: 4.0
    7 Stable tag: 1.0.8
     7Stable tag: 1.0.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4343== Changelog ==
    4444
     45= 1.0.9 =
     46* Cleaning up script enqueuing
     47
    4548= 1.0.8 =
    4649* Fixed issues causing some conflicts with WP styling
     
    7275== Upgrade Notice ==
    7376
     77= 1.0.9 =
     78Cleaning up script enqueuing
     79
    7480= 1.0.8 =
    7581Fixed issues causing some conflicts with WP styling
  • tracking-script-manager/trunk/tracking-scripts.php

    r1092690 r1092709  
    44    * Plugin URI: http://wordpress.org/plugins/tracking-script-manager/
    55    * Description: A plugin that allows you to add tracking scripts to your site.
    6     * Version: 1.0.8
     6    * Version: 1.0.9
    77    * Author: Red8 Interactive
    88    * Author URI: http://red8interactive.com
     
    101101                add_menu_page('Tracking Scripts', 'Tracking Scripts', 'administrator', __FILE__, array(__CLASS__, 'tracking_options'), '');
    102102                add_action('admin_init', array(__CLASS__, 'register_tracking_scripts_settings'));
    103                 add_action('admin_enqueue_scripts', array(__CLASS__, 'tracking_scripts_admin_scripts'));
    104103            }
    105104           
     
    121120           
    122121            public static function tracking_options() {
     122                self::tracking_scripts_admin_scripts();
     123               
    123124                global $pagenow;
    124125                $settings = get_option('tracking_scripts_settings');
Note: See TracChangeset for help on using the changeset viewer.