Created
January 14, 2014 22:30
-
-
Save mattd/8427213 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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