Plugin breaks complete panel of Kirby 2.2.1
The plugins is extreme powerful, but breaks the complete panel of Kirby 2.2.1.
It forces a Javascript-error, which causes the panel to close down.
My solution was to alter Minify_HTML.php and change this string '/^\\s+|\\s+$/m' to this one '/^\\s+/m' at line #123.
It looks like the trim function on that line is creating the issue.
The following seems to work as a temporary measure when added to the site's config file:
if(function_exists('panel')) { c::set('MinifyHTML', false); }
For me, with Kirby 2.3, it doesn't break the whole panel but it breaks the formatting button bars on fields that are supposed to have them, and also ends up making those fields small.
And the option above to disable the plugin in the panel isn't working.
I can confirm that. Disabling with c::set('MinifyHTML', false); doesn't work.