I'm trying to implement some fancy (frontend) framework where the developer decided to make the whole bloody thing dependant on the javscript tag having a specific id (WTF!?). This make me have to bend Phalcon to allow me to somehow pass in parameters in my assets management routines, like:
$this->assets->addJs( "path/to/file.js", array( "id" => "unique-js-id") ); or $this->assets->addJs( "path/to/file.js", { "id" : "unique-js-id"} );
Can this be done in some »standard« way?