Plugin Directory

Changeset 2270796


Ignore:
Timestamp:
03/30/2020 01:29:23 PM (6 years ago)
Author:
Pedromcj95
Message:

Update of new version: 1.1.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • mowomo-variable-fonts/trunk/mwm-variable-font.php

    r2270785 r2270796  
    2929if (!function_exists('mwm_variable_font_enqueue_scripts')) {
    3030    function mwm_variable_font_enqueue_scripts() {
    31         wp_register_script(mwm_variable_font_SLUG.'_scripts', mwm_variable_font_JS.'scripts.js', array('jquery'), '1.0.0' );
    32         wp_register_style(mwm_variable_font_SLUG.'_styles', mwm_variable_font_CSS.'styles.css', array());
    33         wp_register_style(mwm_variable_font_SLUG.'_inter', 'https://rsms.me/inter/inter.css', array());
     31        wp_register_script(mwm_variable_font_SLUG.'_scripts', mwm_variable_font_JS.'scripts.js', array('jquery'), '1.1.0' );
     32        wp_register_style(mwm_variable_font_SLUG.'_styles', mwm_variable_font_CSS.'styles.css', array(), '1.1.0' );
     33        wp_register_style(mwm_variable_font_SLUG.'_inter', 'https://rsms.me/inter/inter.css', array(), '1.1.0' );
    3434        wp_enqueue_script(mwm_variable_font_SLUG.'_scripts');
    3535        wp_enqueue_style(mwm_variable_font_SLUG.'_styles');
     
    4242if (!function_exists('mwm_variable_font_enqueue_customizer_scripts')) {
    4343    function mwm_variable_font_enqueue_customizer_scripts() {
    44         wp_register_script(mwm_variable_font_SLUG.'-scripts-customizer', mwm_variable_font_JS.'customizer-scripts.js', array('jquery'), '1.0.0' );
     44        wp_register_script(mwm_variable_font_SLUG.'-scripts-customizer', mwm_variable_font_JS.'customizer-scripts.js', array('jquery'), '1.1.0' );
    4545        wp_localize_script( mwm_variable_font_SLUG.'-scripts-customizer', 'ajax_vars', array(
    4646            'ajax'  =>  admin_url( "admin-ajax.php" ),
     
    5757if (!function_exists('mwm_variable_font_enqueue_admin_scripts')) {
    5858    function mwm_variable_font_enqueue_admin_scripts() {
    59         wp_register_script(mwm_variable_font_SLUG.'_admin_scripts', mwm_variable_font_JS.'admin_scripts.js', array('jquery'), '1.0.0' );
     59        wp_register_script(mwm_variable_font_SLUG.'_admin_scripts', mwm_variable_font_JS.'admin_scripts.js', array('jquery'), '1.1.0' );
    6060        wp_localize_script( mwm_variable_font_SLUG.'_admin_scripts', 'ajax_vars', array(
    6161            'ajax'  =>  admin_url( "admin-ajax.php" )
    6262        ));
    63         wp_register_style(mwm_variable_font_SLUG.'_admin_styles', mwm_variable_font_CSS.'admin_styles.css', array());
     63        wp_register_style(mwm_variable_font_SLUG.'_admin_styles', mwm_variable_font_CSS.'admin_styles.css', array(), '1.1.0' );
    6464        wp_enqueue_script(mwm_variable_font_SLUG.'_admin_scripts');
    6565        wp_enqueue_style(mwm_variable_font_SLUG.'_admin_styles');
Note: See TracChangeset for help on using the changeset viewer.