summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/views/accounts/accountView.js
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-31 13:11:58 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-31 13:11:58 +0200
commit53bc0477f9b0217c87676103361b1633e9b12f19 (patch)
treec6461ab1c292b39e49e1a5924b75761b588b25ba /module/web/static/js/views/accounts/accountView.js
parentseparate addon and plugin configs (diff)
downloadpyload-53bc0477f9b0217c87676103361b1633e9b12f19.tar.xz
added account page
Diffstat (limited to 'module/web/static/js/views/accounts/accountView.js')
-rw-r--r--module/web/static/js/views/accounts/accountView.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/module/web/static/js/views/accounts/accountView.js b/module/web/static/js/views/accounts/accountView.js
new file mode 100644
index 000000000..f310e4cc2
--- /dev/null
+++ b/module/web/static/js/views/accounts/accountView.js
@@ -0,0 +1,19 @@
+define(['jquery', 'underscore', 'backbone', 'app'],
+ function($, _, Backbone, App) {
+
+ // Renders settings over view page
+ return Backbone.View.extend({
+
+ el: "li",
+
+ events: {
+ },
+
+ initialize: function() {
+ },
+
+ render: function() {
+ return this;
+ }
+ });
+ }); \ No newline at end of file