Question

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

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top