mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-09 19:01:42 +00:00
Reimplement sysadmin with backbone
This commit is contained in:
35
static/scripts/sysadmin-app/views/dashboard.js
Normal file
35
static/scripts/sysadmin-app/views/dashboard.js
Normal file
@@ -0,0 +1,35 @@
|
||||
define([
|
||||
'jquery',
|
||||
'underscore',
|
||||
'backbone',
|
||||
'common'
|
||||
], function($, _, Backbone, Common) {
|
||||
'use strict';
|
||||
|
||||
var DashboardView = Backbone.View.extend({
|
||||
|
||||
tagName: 'div',
|
||||
|
||||
initialize: function() {
|
||||
|
||||
},
|
||||
|
||||
events: {
|
||||
},
|
||||
|
||||
render: function() {
|
||||
|
||||
},
|
||||
|
||||
hide: function() {
|
||||
|
||||
},
|
||||
|
||||
show: function() {
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
return DashboardView;
|
||||
});
|
Reference in New Issue
Block a user