mirror of
https://github.com/haiwen/seahub.git
synced 2025-04-29 11:44:34 +00:00
20 lines
395 B
JavaScript
20 lines
395 B
JavaScript
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;
|
|
});
|