Skip to content

Instantly share code, notes, and snippets.

@kristoferjoseph
Created July 31, 2013 17:55
Show Gist options
  • Save kristoferjoseph/6124413 to your computer and use it in GitHub Desktop.
Save kristoferjoseph/6124413 to your computer and use it in GitHub Desktop.
Example View Factory
var viewMappings = {
};
var addMapping = function (type, viewClass) {
viewMappings[type] = viewClass;
};
var create = function (viewModel) {
var ViewClass = viewMappings[viewModel.get("type")];
if (ViewClass) {
return new ViewClass({model: viewModel});
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment