Changeset 2885674
- Timestamp:
- 03/23/2023 01:17:57 PM (3 years ago)
- Location:
- admin-sticky-sidebar
- Files:
-
- 6 added
- 2 edited
-
tags/1.5.1 (added)
-
tags/1.5.1/LICENSE (added)
-
tags/1.5.1/admin-sticky-sidebar.css (added)
-
tags/1.5.1/admin-sticky-sidebar.js (added)
-
tags/1.5.1/admin-sticky-sidebar.php (added)
-
tags/1.5.1/readme.txt (added)
-
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.php
r2885551 r2885674 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. 4.25 Version: 1.5.1 6 6 Author: Tom Walter 7 7 Author URI: https://littlefragments.com … … 12 12 function admin_sticky_sidebar_css($hook) { 13 13 // 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__ )); 15 15 } 16 16 add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_css'); … … 21 21 function admin_sticky_sidebar_js($hook) { 22 22 // 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__ )); 24 24 } 25 25 add_action('admin_enqueue_scripts', 'admin_sticky_sidebar_js'); -
admin-sticky-sidebar/trunk/readme.txt
r2885551 r2885674 5 5 Requires at least: 5.0 6 6 Tested up to: 6.0 7 Stable tag: 1.5 7 Stable tag: 1.5.1 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 61 61 = 1.5 = 62 62 * 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.