1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-24 22:22:38 +00:00
seahub/static/scripts/sysadmin-app/views/dashboard.js
2016-04-23 17:13:32 +08:00

36 lines
436 B
JavaScript

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