Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author benjaminprojas

    (@benjaminprojas)

    master412160,

    I am not able to duplicate this issue. Can you record a video of this happening so I can further troubleshoot?

    Also, can you try disabling all other plugins except WP Editor and see if it still happens?

    I’m getting the same thing too on a new installation. Very annoying!

    Thread Starter master412160

    (@master412160)

    Benjaminprojas,

    It appears no longer present. However the success message is hidden when you hit save in fullscreen until you exit fullscreen mode then you see the success message box.

    Is this intentional that you don’t see it when being in full screen mode?

    I’ve seen this behavior recently and regularly. In my MacBook using Chrome. It seems more likely to happen if you save and move quickly on to another page or view OR if you move around in the editor before the save is complete.

    Refreshing fixes sometimes, sometimes not. Clicking different option on WP menu, then coming back to themes editor always fixes it.

    This has been happening for a few versions. The reason for this is that everytime you load a new file, the click handlers of all the buttons are registered again (and again, and again). I modified the plugin myself as follows to resolve this:

    At the bottom of plugin-dir/views/plugin-editor.php and plugin-dir/views/theme-editor.php there are a bunch of lines that look like:

    $jq('#plugin_fullscreen').live("click", function() {

    Where ‘plugin_fullscreen’ is different in each line. I changed each of the lines to:

    $jq('#plugin_fullscreen').die("click.wp-editor").live("click.wp-editor", function() {

    Adding the .wp-editor namespace to the click event makes it very easy to remove (with ‘die’) before it is registered a second time.

    – Monk

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘success message appearing over and over’ is closed to new replies.