Changeset 1765252
- Timestamp:
- 11/13/2017 04:44:41 PM (8 years ago)
- Location:
- text-widget-fullscreen/trunk
- Files:
-
- 2 added
- 1 deleted
- 4 edited
-
includes/admin/css/widgets.css (modified) (1 diff)
-
includes/admin/functions.php (modified) (2 diffs)
-
includes/admin/js/text-widget-fullscreen-add-widget-classes.js (added)
-
includes/admin/js/text-widget-fullscreen-text-widgets.js (added)
-
includes/admin/js/text-widget-text-widgets.js (deleted)
-
readme.txt (modified) (2 diffs)
-
text-widget-fullscreen.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
text-widget-fullscreen/trunk/includes/admin/css/widgets.css
r1751450 r1765252 6 6 z-index: -1; 7 7 } 8 9 body.mce-fullscreen #widgets-right .widget.text { 10 z-index: 9999; 11 } -
text-widget-fullscreen/trunk/includes/admin/functions.php
r1751450 r1765252 12 12 13 13 14 wp_register_script( 'text-widget-fullscreen-script', $includes_url . 'admin/js/text-widget-text-widgets.js', array( 'jquery', 'backbone', 'editor', 'wp-util', 'wp-a11y' ), $version, true ); 14 wp_register_script( 'text-widget-fullscreen-script', $includes_url . 'admin/js/text-widget-fullscreen-text-widgets.js', array( 'jquery', 'backbone', 'editor', 'wp-util', 'wp-a11y' ), $version, true ); 15 wp_register_script( 'text-widget-fullscreen-add-widget-classes', $includes_url . 'admin/js/text-widget-fullscreen-add-widget-classes.js', array(), $version, true ); 15 16 wp_register_style( 'text-widget-fullscreen-widgets-css', $includes_url . 'admin/css/widgets.css', array(), $version ); 16 17 wp_register_style( 'text-widget-fullscreen-customize-css', $includes_url . 'admin/css/customize.css', array(), $version ); … … 61 62 'scripts' => array( 62 63 'text-widget-fullscreen-script', 64 'text-widget-fullscreen-add-widget-classes' 63 65 ), 64 66 'styles' => array( -
text-widget-fullscreen/trunk/readme.txt
r1751460 r1765252 4 4 Requires at least: 4.8.2 5 5 Tested up to: 4.8.2 6 Stable tag: 1. 06 Stable tag: 1.1 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 56 56 == Changelog == 57 57 58 = 1.1 = 59 60 * Fixed z-index issue for text editor on fullscreen on widgets.php page 61 58 62 = 1.0 = 59 63 -
text-widget-fullscreen/trunk/text-widget-fullscreen.php
r1751450 r1765252 4 4 Plugin URI: https://wordpress.org/plugins/text-widget-fullscreen 5 5 Description: This plugin will add a fullscreen button to your Text Widget. 6 Version: 1. 06 Version: 1.1 7 7 Author: Alexandru Vornicescu 8 8 Author URI: https://profiles.wordpress.org/alexvorn2 … … 44 44 /** Versions **********************************************************/ 45 45 46 $this->version = '1. 0';46 $this->version = '1.1'; 47 47 48 48 // Setup some base path and URL information
Note: See TracChangeset
for help on using the changeset viewer.