Changeset 2645578
- Timestamp:
- 12/17/2021 03:20:55 AM (4 years ago)
- Location:
- theme-jason
- Files:
-
- 23 added
- 3 edited
-
tags/1.0.3 (added)
-
tags/1.0.3/LICENSE (added)
-
tags/1.0.3/assets (added)
-
tags/1.0.3/assets/admin (added)
-
tags/1.0.3/assets/admin/css (added)
-
tags/1.0.3/assets/admin/css/main.css (added)
-
tags/1.0.3/assets/admin/js (added)
-
tags/1.0.3/assets/admin/js/main.js (added)
-
tags/1.0.3/assets/index.php (added)
-
tags/1.0.3/classes (added)
-
tags/1.0.3/classes/admin (added)
-
tags/1.0.3/classes/admin/Admin.php (added)
-
tags/1.0.3/classes/admin/index.php (added)
-
tags/1.0.3/classes/front (added)
-
tags/1.0.3/classes/front/Front.php (added)
-
tags/1.0.3/classes/front/index.php (added)
-
tags/1.0.3/classes/index.php (added)
-
tags/1.0.3/index.php (added)
-
tags/1.0.3/languages (added)
-
tags/1.0.3/languages/index.php (added)
-
tags/1.0.3/languages/theme-jason.pot (added)
-
tags/1.0.3/readme.txt (added)
-
tags/1.0.3/theme-jason.php (added)
-
trunk/assets/admin/js/main.js (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/theme-jason.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
theme-jason/trunk/assets/admin/js/main.js
r2641548 r2645578 12 12 13 13 let import_btn = $( '.edit-site .popover-slot .components-popover:not(.block-editor-block-settings-menu__popover) .components-dropdown-menu__menu button' ).clone(); 14 15 if ( import_btn.length > 1 ) { 16 import_btn = import_btn[0]; 17 } 18 14 19 $( import_btn ).attr( 'id', 'theme-jason-import-styles' ); 15 20 $( import_btn ).text( scriptParams.localization.import_styles ); … … 83 88 84 89 let export_btn = $( '.edit-site .popover-slot .components-popover:not(.block-editor-block-settings-menu__popover) .components-dropdown-menu__menu button#theme-jason-import-styles' ).clone(); 90 91 if ( export_btn.length > 1 ) { 92 export_btn = export_btn[0]; 93 } 94 85 95 $( export_btn ).attr( 'id', 'theme-jason-export-styles' ); 86 96 $( export_btn ).text( scriptParams.localization.export_styles ); … … 146 156 } 147 157 148 function showMessage( message, type = 'success', actions = []) {158 function showMessage( message, type = 'success', actions = null ) { 149 159 wp.data.dispatch("core/notices").createNotice( 150 160 type, -
theme-jason/trunk/readme.txt
r2641549 r2645578 2 2 Contributors: (themejason) 3 3 Tags: theme.json, fonts, colors 4 Requires at least: 5. 94 Requires at least: 5.8 5 5 Tested up to: 5.8.2 6 6 Requires PHP: 7.0 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 31 31 = 1.0 = 32 32 * It's alive 33 34 = 1.0.1 = 35 * Fixed why styles weren't importing correctly. 36 37 = 1.0.2 = 38 * Fixed the menu items from showing up twice. 39 -
theme-jason/trunk/theme-jason.php
r2641549 r2645578 10 10 * Requires PHP: 7.0 11 11 * Requires At Least: 5.8 12 * Version: 1.0. 112 * Version: 1.0.3 13 13 * Text Domain: theme-jason 14 14 * Domain Path: /languages … … 24 24 define( 'THEME_JASON_DIRECTORY_ROOT', __DIR__ ); 25 25 define( 'THEME_JASON_DIRECTORY_URL', plugin_dir_url( __FILE__ ) ); 26 define( 'THEME_JASON_PLUGIN_VERSION', '1.0. 2' );26 define( 'THEME_JASON_PLUGIN_VERSION', '1.0.3' ); 27 27 28 28 /**
Note: See TracChangeset
for help on using the changeset viewer.