web-apps/apps/presentationeditor/main/app/collection/ShapeGroups.js

22 lines
473 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
/**
* ShapeGroups.js
*
* Created by Alexander Yuzhin on 2/10/14
* Copyright (c) 2014 Ascensio System SIA. All rights reserved.
*
*/
define([
'backbone',
'presentationeditor/main/app/model/ShapeGroup'
], function(Backbone){ 'use strict';
if (Common === undefined)
var Common = {};
Common.Collections = Common.Collections || {};
PE.Collections.ShapeGroups = Backbone.Collection.extend({
model: PE.Models.ShapeGroup
});
});