7 lines
241 B
CoffeeScript
7 lines
241 B
CoffeeScript
attr = DS.attr
|
|
App.SectionElement = DS.Model.extend App.SvgElementMixin,
|
|
position_x: attr 'number', defaultValue: 0
|
|
position_y: attr 'number', defaultValue: 0
|
|
rotation: attr 'number', defaultValue: 0
|
|
section: DS.belongsTo('section')
|