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

30 lines
586 B
JavaScript

/**
* Font.js
*
* Created by Alexander Yuzhin on 2/11/14
* Copyright (c) 2014 Ascensio System SIA. All rights reserved.
*
*/
if (Common === undefined)
var Common = {};
Common.Models = Common.Models || {};
define([
'backbone'
], function(Backbone){ 'use strict';
Common.Models.Font = Backbone.Model.extend({
defaults: function() {
return {
id : Common.UI.getId(),
name : null,
cloneid : null,
imgidx : 0,
type : 0
}
}
});
});