web-apps/apps/common/main/lib/collection/TextArt.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

29 lines
605 B
JavaScript

/**
* Created by Julia.Radzhabova on 09.07.15
* Copyright (c) 2014 Ascensio System SIA. All rights reserved.
*/
if (Common === undefined)
var Common = {};
Common.Collections = Common.Collections || {};
define([
'backbone'
], function(Backbone){
'use strict';
Common.Collections.TextArt = Backbone.Collection.extend({
model: Backbone.Model.extend({
defaults: function() {
return {
id: Common.UI.getId(),
imageUrl: null,
data: null
}
}
})
});
});