Plugin Directory

Changeset 2898448


Ignore:
Timestamp:
04/13/2023 10:33:02 AM (3 years ago)
Author:
followalter
Message:

Tested with Wordpress 6.2

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

Legend:

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

    r2888166 r2898448  
    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.5.2
     5Version: 1.5.3
    66Author: Tom Walter
    77Author URI: https://littlefragments.com
     
    1010
    1111// add css to the admin --------------------------------------------------------
    12 function admin_sticky_sidebar_css($hook) {
     12function admin_sticky_sidebar_css($hook)
     13{
    1314  // only add to the post.php admin page.
    14   wp_enqueue_style( 'admin-sticky-sidebar-style',  plugins_url( 'admin-sticky-sidebar.css?v=1.5.2' , __FILE__ ));
     15  wp_enqueue_style('admin-sticky-sidebar-style',  plugins_url('admin-sticky-sidebar.css?v=1.5.3', __FILE__));
    1516}
    1617add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_css');
     
    1920
    2021// add js to the admin ---------------------------------------------------------
    21 function admin_sticky_sidebar_js($hook) {
     22function admin_sticky_sidebar_js($hook)
     23{
    2224  // only add to the post.php admin page.
    23   wp_enqueue_script('admin-sticky-sidebar-script', plugins_url( 'admin-sticky-sidebar.js?v=1.5.2' , __FILE__ ));
     25  wp_enqueue_script('admin-sticky-sidebar-script', plugins_url('admin-sticky-sidebar.js?v=1.5.3', __FILE__));
    2426}
    2527add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_js');
  • admin-sticky-sidebar/trunk/readme.txt

    r2888166 r2898448  
    44Tags: admin, sticky, fixed, floating, float, sidebar, submit, publish, update, box, modal, scroll, timesaver, lifehack, lifesaver, float
    55Requires at least: 5.0
    6 Tested up to: 6.0
    7 Stable tag: 1.5.2
     6Tested up to: 6.2
     7Stable tag: 1.5.3
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    6767= 1.5.2 =
    6868* Fix dashboard bug, es5 syntax
     69
     70= 1.5.3 =
     71* Tested with Wordpress 6.2
Note: See TracChangeset for help on using the changeset viewer.