mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-24 22:22:38 +00:00
36 lines
436 B
JavaScript
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;
|
|
});
|