1
0
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:
Daniel Pan
2016-03-16 13:30:00 +08:00
committed by lian
parent fb439f1aef
commit 899f5241d4
11 changed files with 341 additions and 3 deletions

View 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;
});