0

What I want to reach is a way to add a script and style placeholder in my master. They will include my initial site.css and jquery.js files. Each haml page or partial can then add their own required files to those placeholders.

Currently I'm creating two strings in my master that I append to in my views.
This results in an ugly and error prone rendering.
Is there a better way to implement this?

Boris Callens
  • 90,659
  • 85
  • 207
  • 305

1 Answers1

1

Is there a better way to implement this?

Yes. This is how I did it and so far it works great for me.

Dmytrii Nagirniak
  • 23,696
  • 13
  • 75
  • 130
  • Thx. I saw your post earlier. I don't feel comfortable with limiting the number of css and js files, but re-reading your solution gave me some hints I will investigate. – Boris Callens Nov 16 '09 at 08:38