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