Plugin Directory

Changeset 2418723


Ignore:
Timestamp:
11/14/2020 08:42:36 PM (5 years ago)
Author:
codeies
Message:

Fixed issue # Wysiwyg was not saving in Gutenberg

Location:
full-page-blog-designer/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • full-page-blog-designer/trunk/README.txt

    r2412247 r2418723  
    22Contributors: Codeies
    33Donate link: #
    4 Tags: fullpage,fullscreen,blog,story,fullwidth,story blog,video background
     4Tags: fullpage,fullscreen,blog,story,fullwidth,story blog,video background,storyform,full page,scroll blog,horizontal
    55Requires at least: 4.0
    66Tested up to: 5.5
    7 Stable tag: 1.1
     7Stable tag: 1.0.2
    88Requires PHP: 5.4
    99License: GPLv2 or later
     
    5252
    535304/11/2020
    54 - Fixed few bugs , Integrated freemius to improve development
     54- Fixed few bugs , Integreated Freemius to improve development
    555504/10/2020
    5656- Initial Release
    5757
    5858== Upgrade Notice ==
    59 1.0.1
     59
  • full-page-blog-designer/trunk/admin/js/codeies_fpbd-admin.js

    r2411604 r2418723  
    1616                          plugins : 'charmap colorpicker compat3x  paste tabfocus textcolor ',
    1717                          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                            }
    2026                        },
    2127                       
     
    2935
    3036            }
    31             $('#publish').click(function(){
    32                 tinyMCE.triggerSave();
    33                 $('textarea').change();
    34             })
    3537       });
    3638
  • full-page-blog-designer/trunk/full-page-blog-designer.php

    r2412195 r2418723  
    1717 * Plugin URI:        https://codeies.com/wordpress-plugins/full-page-blog-designer/
    1818 * Description:       This Plugin converts your website Blog Page to Full Page Horizontal Scroll layout
    19  * Version:           1.0.1
     19 * Version:           1.0.2
    2020 * Requires at least: 5.0
    2121 * Author:            Codeies
  • full-page-blog-designer/trunk/includes/package_metaboxes/class-ap-custom-metabox.php

    r2411604 r2418723  
    654654                }
    655655                $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);
    657657                $sections_field = array('codeies_fpdb_sections' =>$sections_field);
    658658
  • full-page-blog-designer/trunk/includes/package_metaboxes/js/meta.js

    r2411604 r2418723  
    228228                                      toolbar1: 'bold italic underline strikethrough | bullist numlist | blockquote hr wp_more | alignleft aligncenter alignright | link unlink | fullscreen | wp_adv',
    229229                                      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                                        }
    231237                                    },
    232238                                    quicktags: true,
Note: See TracChangeset for help on using the changeset viewer.