Changeset 2418723
- Timestamp:
- 11/14/2020 08:42:36 PM (5 years ago)
- Location:
- full-page-blog-designer/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (2 diffs)
-
admin/js/codeies_fpbd-admin.js (modified) (2 diffs)
-
full-page-blog-designer.php (modified) (1 diff)
-
includes/package_metaboxes/class-ap-custom-metabox.php (modified) (1 diff)
-
includes/package_metaboxes/js/meta.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
full-page-blog-designer/trunk/README.txt
r2412247 r2418723 2 2 Contributors: Codeies 3 3 Donate link: # 4 Tags: fullpage,fullscreen,blog,story,fullwidth,story blog,video background 4 Tags: fullpage,fullscreen,blog,story,fullwidth,story blog,video background,storyform,full page,scroll blog,horizontal 5 5 Requires at least: 4.0 6 6 Tested up to: 5.5 7 Stable tag: 1. 17 Stable tag: 1.0.2 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later … … 52 52 53 53 04/11/2020 54 - Fixed few bugs , Integr ated freemius to improve development54 - Fixed few bugs , Integreated Freemius to improve development 55 55 04/10/2020 56 56 - Initial Release 57 57 58 58 == Upgrade Notice == 59 1.0.1 59 -
full-page-blog-designer/trunk/admin/js/codeies_fpbd-admin.js
r2411604 r2418723 16 16 plugins : 'charmap colorpicker compat3x paste tabfocus textcolor ', 17 17 toolbar1: 'bold italic underline strikethrough | bullist numlist | blockquote hr wp_more | alignleft aligncenter alignright | link unlink | fullscreen | wp_adv', 18 toolbar2: 'fontselect fontsizeselect formatselect alignjustify forecolor | pastetext removeformat charmap | outdent indent | undo redo | wp_help', 19 content_css : codeies_fpbd.pluginurl+'/admin/css/tinymce.css' 18 toolbar2: 'fontselect fontsizeselect formatselect alignjustify forecolor | styleselect | pastetext removeformat charmap | outdent indent | undo redo | wp_help', 19 content_css : codeies_fpbd.pluginurl+'/admin/css/tinymce.css', 20 setup: function (ed) { 21 ed.on("change", function () { 22 tinyMCE.triggerSave(); 23 $('textarea').change(); 24 }) 25 } 20 26 }, 21 27 … … 29 35 30 36 } 31 $('#publish').click(function(){32 tinyMCE.triggerSave();33 $('textarea').change();34 })35 37 }); 36 38 -
full-page-blog-designer/trunk/full-page-blog-designer.php
r2412195 r2418723 17 17 * Plugin URI: https://codeies.com/wordpress-plugins/full-page-blog-designer/ 18 18 * Description: This Plugin converts your website Blog Page to Full Page Horizontal Scroll layout 19 * Version: 1.0. 119 * Version: 1.0.2 20 20 * Requires at least: 5.0 21 21 * Author: Codeies -
full-page-blog-designer/trunk/includes/package_metaboxes/class-ap-custom-metabox.php
r2411604 r2418723 654 654 } 655 655 $sections_field = array('codeies_fpbd_options_codeies_fpdb_sections_parent'=>$sections_field); 656 $sections_field = json_encode($sections_field );656 $sections_field = json_encode($sections_field,JSON_UNESCAPED_UNICODE); 657 657 $sections_field = array('codeies_fpdb_sections' =>$sections_field); 658 658 -
full-page-blog-designer/trunk/includes/package_metaboxes/js/meta.js
r2411604 r2418723 228 228 toolbar1: 'bold italic underline strikethrough | bullist numlist | blockquote hr wp_more | alignleft aligncenter alignright | link unlink | fullscreen | wp_adv', 229 229 toolbar2: 'fontselect fontsizeselect formatselect alignjustify forecolor | pastetext removeformat charmap | outdent indent | undo redo | wp_help', 230 content_css : codeies_fpbd.pluginurl+'/admin/css/tinymce.css' 230 content_css : codeies_fpbd.pluginurl+'/admin/css/tinymce.css', 231 setup: function (ed) { 232 ed.on("change", function () { 233 tinyMCE.triggerSave(); 234 $('textarea').change(); 235 }) 236 } 231 237 }, 232 238 quicktags: true,
Note: See TracChangeset
for help on using the changeset viewer.