Skip to content

Instantly share code, notes, and snippets.

@mattd
Created January 14, 2014 22:30
Show Gist options
  • Save mattd/8427213 to your computer and use it in GitHub Desktop.
Save mattd/8427213 to your computer and use it in GitHub Desktop.
define([
'marionette',
'marionette.formview'
], function (Marionette) {
'use strict';
Marionette.Renderer.render = function (template, data) {
return template(data);
};
Marionette.FormView.prototype.onRender = function () {
// Super happy fun times go here.
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment