Skip to content

Instantly share code, notes, and snippets.

@mattd
Created January 27, 2013 17:51
Show Gist options
  • Save mattd/4649433 to your computer and use it in GitHub Desktop.
Save mattd/4649433 to your computer and use it in GitHub Desktop.
define([
'marionette',
'templates',
'i18n!nls/colors'
], function (Marionette, Templates, colors) {
"use strict";
return Marionette.ItemView.extend({
template: Templates['user/item.hbs'],
templateHelpers: {
colors: colors
},
modelEvents: {
'sync': 'render'
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment