I would like to know if it is possible to compress via yui compressor in Symfony2 an inline javascript twig file.
the twig file contains js code as <script>/%JS code%/</script>
The doc states that it works for .js files but didn't mention the inline javascript

有帮助吗?

解决方案

Allow me to tell you how I finally did it:
Install the bundle : https://github.com/nibsirahsieu/SalvaJshrinkBundle
after that use the tag jshrink

<script type="text/javascript">{% jshrink %}
    $(document).ready(function() {
        // ...
    });
{% endjshrink %}</script>

PS: if you're not using symfony you can download the library: https://github.com/tedivm/JShrink

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top