summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/models/model.js
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/static/js/models/model.js')
-rw-r--r--module/web/static/js/models/model.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/module/web/static/js/models/model.js b/module/web/static/js/models/model.js
deleted file mode 100644
index cd92e2644..000000000
--- a/module/web/static/js/models/model.js
+++ /dev/null
@@ -1,24 +0,0 @@
-define(['jquery', 'backbone'], function($, Backbone) {
-
- var Model = Backbone.Model.extend({
-
- defaults: {
- message: "You are now using Backbone, Lodash, Require, Modernizr, and jQuery! (Click Me)"
- },
-
- // Model Constructor
- initialize: function() {
-
- },
-
- // Any time a model attribute is set, this method is called
- validate: function(attrs) {
-
- }
-
- });
-
- // Returns the Model class
- return Model;
-
-}); \ No newline at end of file