1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 15:38:15 +00:00
This commit is contained in:
lian
2016-05-27 16:42:40 +08:00
parent 72f4297934
commit a767aeb3d8
22 changed files with 240 additions and 212 deletions

View File

@@ -0,0 +1,19 @@
define([
'underscore',
'backbone',
'common'
], function(_, Backbone, Common) {
'use strict';
var TrashRepo = Backbone.Model.extend({
getIconUrl: function(size) {
return Common.getLibIconUrl(false, false, size);
},
getIconTitle: function() {
return gettext("Read-Write library");
}
});
return TrashRepo;
});