1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-19 01:44:13 +00:00

[myhome] bind repo events when initilize myhome view

This commit is contained in:
zhengxie
2015-01-31 14:17:56 +08:00
committed by Daniel Pan
parent 3722334ceb
commit d7562d4257

View File

@@ -30,9 +30,9 @@ define([
this.$el.ajaxStart(this.ajaxLoadingShow).ajaxStop(this.ajaxLoadingHide);
// this.on('showDirents', this.showDirents, this);
this.initializeRepos();
this.$repoTabs = this.$('#repo-tabs');
this.$cont = this.$('#right-panel');
this.$table = this.$('#my-own-repos table');
this.$tableHead = $('thead', this.$table);
@@ -115,7 +115,6 @@ define([
showRepoList: function() {
console.log('show repo list');
this.initializeRepos();
Repos.fetch({reset: true});
this.dirView.hide();
@@ -136,26 +135,6 @@ define([
new AddRepoView();
}
/*
addOneDirent: function(dirent) {
var view = new DirentView({model: dirent});
this.$repoList.append(view.render().el);
},
addAllDirent: function() {
this.$repoList.empty();
this.dirents.each(this.addOneDirent, this);
},
renderDirent: function(eventName) {
console.log('render dirents with event: ' + eventName);
if (this.dirents.length) {
this.$mine.show();
}
},*/
});
return MyHomeView;