web-apps/apps/spreadsheeteditor/main/app/collection/FormulaGroups.js

20 lines
419 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
/**
* FormulaGroups.js
*
* Created by Alexey.Musinov on 11/04/14
* Copyright (c) 2014 Ascensio System SIA. All rights reserved.
*
*/
define([
'backbone',
'spreadsheeteditor/main/app/model/Formula'
], function(Backbone) {
'use strict';
SSE.Collections = SSE.Collections || {};
SSE.Collections.FormulaGroups = Backbone.Collection.extend({
model: SSE.Models.FormulaGroup
});
});