Changeset 2723283
- Timestamp:
- 05/13/2022 10:32:28 AM (4 years ago)
- Location:
- admin-sticky-sidebar
- Files:
-
- 6 added
- 3 edited
-
tags/1.4 (added)
-
tags/1.4/LICENSE (added)
-
tags/1.4/admin-sticky-sidebar.css (added)
-
tags/1.4/admin-sticky-sidebar.js (added)
-
tags/1.4/admin-sticky-sidebar.php (added)
-
tags/1.4/readme.txt (added)
-
trunk/admin-sticky-sidebar.css (modified) (1 diff)
-
trunk/admin-sticky-sidebar.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
admin-sticky-sidebar/trunk/admin-sticky-sidebar.css
r2653194 r2723283 23 23 } 24 24 25 #postbox-container-2 .inside { 26 display: flex; 27 flex-direction: column; 28 } 29 25 30 @media (max-width: 850px) { 26 31 #postbox-container-1 { -
admin-sticky-sidebar/trunk/admin-sticky-sidebar.php
r2684416 r2723283 3 3 Plugin Name: Admin Sticky Sidebar 4 4 Description: Makes the sidebar follow you when you scroll and remembers scroll position on update. For more info, see the readme. 5 Version: 1. 3.15 Version: 1.4 6 6 Author: Tom Walter 7 7 Author URI: https://littlefragments.com … … 13 13 // only add to the post.php admin page. 14 14 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__ )); 16 16 } 17 17 add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_css'); … … 23 23 // only add to the post.php admin page. 24 24 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__ )); 26 26 } 27 27 add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_js'); -
admin-sticky-sidebar/trunk/readme.txt
r2684416 r2723283 4 4 Tags: admin, sticky, fixed, floating, float, sidebar, submit, publish, update, box, modal, scroll, timesaver, lifehack, lifesaver, float 5 5 Requires at least: 5.0 6 Tested up to: 5.9. 17 Stable tag: 1. 3.16 Tested up to: 5.9.3 7 Stable tag: 1.4 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 48 48 = 1.3.1 = 49 49 * 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.