1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-25 06:33:48 +00:00

[backbone] Add model, template and view for group navigation popup

This commit is contained in:
Daniel Pan
2015-01-27 22:41:16 +08:00
parent fb76295140
commit 167eb79888
7 changed files with 106 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
define([
'underscore',
'backbone'
], function(_, Backbone) {
'use strict';
var Group = Backbone.Model.extend({});
return Group;
});