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

22 lines
485 B
JavaScript
Raw Normal View History

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