8000 Assetic by weaverryan · Pull Request #2263 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Assetic #2263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 27, 2013
Merged

Assetic #2263

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[#2263] Clarifying when assets are combined thanks to @stof
  • Loading branch information
weaverryan committed Feb 27, 2013
commit 0ed1a842ec1c49bb4445c981de61c3cda91e0116
7 changes: 4 additions & 3 deletions cookbook/assetic/asset_management.rst
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,10 @@ but still serve them as a single file:
<?php endforeach; ?>

In the ``dev`` environment, each file is still served individually, so that
you can debug problems more easily. However, in the ``prod`` environment,
this will be rendered as a single ``script`` tag, which contains the contents
of all of the JavaScript files.
you can debug problems more easily. However, in the ``prod`` environment
(or more specifically, when the ``debug`` flag is ``false``), this will be
rendered as a single ``script`` tag, which contains the contents of all of
the JavaScript files.

.. tip::

Expand Down
0