Changeset 2172581
- Timestamp:
- 10/13/2019 09:10:54 PM (6 years ago)
- Location:
- styles-selector/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
includes/class-styleselector.php (modified) (1 diff)
-
public/js/styleselector-public.js (modified) (2 diffs)
-
styleselector.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
styles-selector/trunk/README.txt
r2171771 r2172581 8 8 Tested up to: 5.2.3 9 9 License: GPLv2 or later 10 Version: 1.1. 010 Version: 1.1.1 11 11 Requires at least: 5.2 12 12 Requires PHP: 7.1.32 … … 120 120 121 121 == Upgrade Notice == 122 = 1.1.1 = 123 124 Size is set when loading to prevent font-size=0 125 122 126 = 1.1.0 = 123 127 -
styles-selector/trunk/includes/class-styleselector.php
r2171771 r2172581 20 20 * Plugin URI: https://chafalladas.com/styles-selector-plugin/ 21 21 * Description: A plugin that changes on the fly the styles of a page. 22 * Version: 1.1. 022 * Version: 1.1.1 23 23 * Requires at least: 5.2 24 24 * Requires PHP: 7.1.3.2 -
styles-selector/trunk/public/js/styleselector-public.js
r2171771 r2172581 57 57 { 58 58 var option=getCookie("ss_Option"); 59 if (option == ""){option = "Restore" }59 if (option == ""){option = "Restore";} 60 60 changeProps(option,size); 61 61 } … … 211 211 var option=getCookie("ss_Option"); 212 212 var size=getCookie("ss_Size") - 1.25; 213 if (size == - 1.25){option = "Restore";size = 0;setCookie("ss_Size",size,365);}//No size, or size == 0 213 214 //console.log("Cookie?"); 214 215 size = size.toFixed(2) -
styles-selector/trunk/styleselector.php
r2171771 r2172581 17 17 * Plugin URI: https://github.com/Chafalleiro/Styles-selector 18 18 * Description: Changes the styles by classes dinamically. Needs some knowledge about the css styles of the templates to alter. 19 * Version: 1.1. 019 * Version: 1.1.1 20 20 * Author: Alfonso 21 21 * Author URI: https://chafalladas.com … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'STYLESELECTOR_VERSION', '1. 0.0' );38 define( 'STYLESELECTOR_VERSION', '1.1.1' ); 39 39 40 40 /**
Note: See TracChangeset
for help on using the changeset viewer.