Miniform & JS in template

dbs

For users with the same problem, the solution is:
miniform v0.14

or
change view.php line 327
from
$template = preg_replace('#\{(.*?)\}#s', '', $template);
to
$template = preg_replace('#\{(?=\S)(.*?)\}#s', '', $template);

thanks to Ruud  (Y)
[url="https://onkel-franky.de"]https://onkel-franky.de[/url]

dbs

#1
Hello, in miniform 0.9 i had added below the miniform template html code a javascript block.
This worked fine.

After upgrade to miniform 0.12 the code output in frontend has been corrupted.
E.g. it changed from
<script>
$(document).ready(function(){
my code ...

to
<script>
$(document).ready(function())
     })
my code ...


I removed the js block from the template an created a code2 section below the miniform section. So it works again.
But i want have html and js together in the miniform template. Is it possible?
[url="https://onkel-franky.de"]https://onkel-franky.de[/url]