web-apps/apps/presentationeditor/main/app/model/SlideLayout.js

26 lines
516 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
/**
* SlideLayout.js
*
* Created by Alexander Yuzhin on 4/18/14
* Copyright (c) 2014 Ascensio System SIA. All rights reserved.
*
*/
define([
'backbone'
], function(Backbone){ 'use strict';
PE.Models = PE.Models||{};
PE.Models.SlideLayout = Backbone.Model.extend({
defaults: function() {
return {
id : Common.UI.getId(),
imageUrl: null,
title : null,
data : null
}
}
});
});