mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Clarifying ambiguous description of require_self in the asset pipeline
This commit is contained in:
parent
a17e5e2462
commit
0549ba10b3
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ There's also a default +app/assets/stylesheets/application.css+ file which conta
|
|||
|
||||
The directives that work in the JavaScript files also work in stylesheets, obviously including stylesheets rather than JavaScript files. The +require_tree+ directive here works the same way as the JavaScript one, requiring all stylesheets from the current directory.
|
||||
|
||||
In this example +require_self+ is used. This puts the CSS contained within the file (if any) at the top of any other CSS in this file unless +require_self+ is specified after another +require+ directive.
|
||||
In this example +require_self+ is used. This puts the CSS contained within the file (if any) at the precise location of the +require_self+ call. If +require_self+ is called more than once, only the last call is respected.
|
||||
|
||||
You can have as many manifest files as you need. For example the +admin.css+ and +admin.js+ manifest could contain the JS and CSS files that are used for the admin section of an application.
|
||||
|
||||
|
|
Loading…
Reference in a new issue