Plugin Directory

Changeset 2885674


Ignore:
Timestamp:
03/23/2023 01:17:57 PM (3 years ago)
Author:
followalter
Message:

Cache bust

Location:
admin-sticky-sidebar
Files:
6 added
2 edited

Legend:

Unmodified
Added
Removed
  • admin-sticky-sidebar/trunk/admin-sticky-sidebar.php

    r2885551 r2885674  
    33Plugin Name: Admin Sticky Sidebar
    44Description: Makes the sidebar follow you when you scroll and remembers scroll position on update. For more info, see the readme.
    5 Version: 1.4.2
     5Version: 1.5.1
    66Author: Tom Walter
    77Author URI: https://littlefragments.com
     
    1212function admin_sticky_sidebar_css($hook) {
    1313  // only add to the post.php admin page.
    14   wp_enqueue_style( 'admin-sticky-sidebar-style',  plugins_url( 'admin-sticky-sidebar.css?v=1.4.2' , __FILE__ ));
     14  wp_enqueue_style( 'admin-sticky-sidebar-style',  plugins_url( 'admin-sticky-sidebar.css?v=1.5.1' , __FILE__ ));
    1515}
    1616add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_css');
     
    2121function admin_sticky_sidebar_js($hook) {
    2222  // only add to the post.php admin page.
    23   wp_enqueue_script('admin-sticky-sidebar-script', plugins_url( 'admin-sticky-sidebar.js?v=1.4.2' , __FILE__ ));
     23  wp_enqueue_script('admin-sticky-sidebar-script', plugins_url( 'admin-sticky-sidebar.js?v=1.5.1' , __FILE__ ));
    2424}
    2525add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_js');
  • admin-sticky-sidebar/trunk/readme.txt

    r2885551 r2885674  
    55Requires at least: 5.0
    66Tested up to: 6.0
    7 Stable tag: 1.5
     7Stable tag: 1.5.1
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    6161= 1.5 =
    6262* Now works on all pages with a submit element + fix for low width devices
     63
     64= 1.5.1 =
     65* Cache bust
Note: See TracChangeset for help on using the changeset viewer.