Skip to content

Instantly share code, notes, and snippets.

@cjmyles
Last active October 14, 2015 05:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjmyles/4c6bd8d2a55d7ca39c9d to your computer and use it in GitHub Desktop.
Save cjmyles/4c6bd8d2a55d7ca39c9d to your computer and use it in GitHub Desktop.
Marionette: Object
'use strict';
var Backbone = require('backbone');
var Mn = require('backbone.marionette');
// var _ = require('underscore');
// var config = require('libs/config');
// var utils = require('libs/utils');
/**
* Object
* @author Craig Myles
*/
module.exports = Mn.Object.extend({
// Protected Functions
// --------------------------
initialize: function(moduleName, app) {
},
// Event Callbacks
// --------------------------
// _onCallback: function() {
// },
// Private Functions
// --------------------------
// _foo: function() {
// },
// Public Functions
// --------------------------
// foo: function() {
// }
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment