summaryrefslogtreecommitdiffstats
path: root/examples/nodejs-mongodb-mongoose-restify/js/vm.js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nodejs-mongodb-mongoose-restify/js/vm.js')
-rw-r--r--examples/nodejs-mongodb-mongoose-restify/js/vm.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/examples/nodejs-mongodb-mongoose-restify/js/vm.js b/examples/nodejs-mongodb-mongoose-restify/js/vm.js
deleted file mode 100644
index 0bcf4c1..0000000
--- a/examples/nodejs-mongodb-mongoose-restify/js/vm.js
+++ /dev/null
@@ -1,33 +0,0 @@
-// Use this as a quick template for future modules
-define([
- 'jquery',
- 'underscore',
- 'backbone',
- 'events'
-], function($, _, Backbone, Events){
- var views = {};
- var create = function (context, name, View, options) {
- // View clean up isn't actually implemented yet but will simply call .clean, .remove and .unbind
- if(typeof views[name] !== 'undefined') {
- views[name].undelegateEvents();
- if(typeof views[name].clean === 'function') {
- views[name].clean();
- }
- }
- var view = new View(options);
- views[name] = view;
- if(typeof context.children === 'undefined'){
- context.children = {};
- context.children[name] = view;
- } else {
- context.children[name] = view;
- }
- Events.trigger('viewCreated');
- return view;
- }
-
-
- return {
- create: create
- };
-});