Plugin Directory

Changeset 2723283


Ignore:
Timestamp:
05/13/2022 10:32:28 AM (4 years ago)
Author:
followalter
Message:

message

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

Legend:

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

    r2653194 r2723283  
    2323}
    2424
     25#postbox-container-2 .inside {
     26  display: flex;
     27  flex-direction: column;
     28}
     29
    2530@media (max-width: 850px) {
    2631  #postbox-container-1 {
  • admin-sticky-sidebar/trunk/admin-sticky-sidebar.php

    r2684416 r2723283  
    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.3.1
     5Version: 1.4
    66Author: Tom Walter
    77Author URI: https://littlefragments.com
     
    1313  // only add to the post.php admin page.
    1414  if ('post.php' !== $hook) return;
    15   wp_enqueue_style( 'admin-sticky-sidebar-style',  plugins_url( 'admin-sticky-sidebar.css?v=1.3.1' , __FILE__ ));
     15  wp_enqueue_style( 'admin-sticky-sidebar-style',  plugins_url( 'admin-sticky-sidebar.css?v=1.4' , __FILE__ ));
    1616}
    1717add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_css');
     
    2323  // only add to the post.php admin page.
    2424  if ('post.php' !== $hook) return;
    25   wp_enqueue_script('admin-sticky-sidebar-script', plugins_url( 'admin-sticky-sidebar.js?v=1.3.1' , __FILE__ ));
     25  wp_enqueue_script('admin-sticky-sidebar-script', plugins_url( 'admin-sticky-sidebar.js?v=1.4' , __FILE__ ));
    2626}
    2727add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_js');
  • admin-sticky-sidebar/trunk/readme.txt

    r2684416 r2723283  
    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: 5.9.1
    7 Stable tag: 1.3.1
     6Tested up to: 5.9.3
     7Stable tag: 1.4
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    4848= 1.3.1 =
    4949* Tested with Wordpress 5.9.1
     50
     51= 1.4 =
     52* Tested with Wordpress 5.9.3
     53* Fix for Firefox scroll bug
Note: See TracChangeset for help on using the changeset viewer.