GeppettoJS / backbone.geppetto

Bring your Backbone applications to life with an event-driven Command framework.
http://geppettojs.github.com/backbone.geppetto/
MIT License
203 stars 28 forks source link

Rename `wireView` or provide an alias #77

Closed creynders closed 9 years ago

creynders commented 9 years ago

I encountered a situation (once again) where I'm wiring something else than a view with wireView since I need it to be injected as a class instead of an instance. In this case a model in a collection.

The collection handles instantiation, but I need the models to receive dependency injections. It's a bit of a rare case, since normally my models don't have any dependencies, but this is an aggregate model, i.e. it manages a number of other models (and collections)

@geekdave I think the easiest will be to provide an alias, something like wireFactory? If at some point in time we need to differentiate between wireFactory and wireView that won't be a problem.