summaryrefslogtreecommitdiffstats
path: root/module/web/app/scripts/views/accounts/accountView.js
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/app/scripts/views/accounts/accountView.js')
-rw-r--r--module/web/app/scripts/views/accounts/accountView.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/module/web/app/scripts/views/accounts/accountView.js b/module/web/app/scripts/views/accounts/accountView.js
deleted file mode 100644
index 89f69d7e7..000000000
--- a/module/web/app/scripts/views/accounts/accountView.js
+++ /dev/null
@@ -1,18 +0,0 @@
-define(['jquery', 'underscore', 'backbone', 'app', 'hbs!tpl/accounts/account'],
- function($, _, Backbone, App, template) {
- 'use strict';
-
- return Backbone.Marionette.ItemView.extend({
-
- tagName: 'tr',
- template: template,
-
- events: {
- 'click .btn-danger': 'deleteAccount'
- },
-
- deleteAccount: function() {
- this.model.destroy();
- }
- });
- }); \ No newline at end of file