[eluser]tonydewan[/eluser] @ainstushar I'm glad you like it! That's an interesting problem that I hadn't yet run into. Also, that's pretty close to how I would have solved it as well. Good solution! Another thing for people to consider if they don't want to change the lib themselves but need this functionality is to reference those assets via URL. For your example, you could do something like:
Code:
$this->carabiner->css(base_url().'assets/js/asdf/asdf.css');// you'll need the URL helper loaded for the base_url() function
Of course, that would be slightly less efficient, as PHP would be getting the contents via an HTTP request versus a file read, but it solves the problem in the short term. I'll definitely look at putting a solution for this in the next version.
@Kwickell I'm glad it's working well for you. If you have any other problems, let me know.