1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-23 00:00:02 +01:00
VILLASweb/app/components/plot-table.js
Markus Grigull da09935de1 Add plot-abstract component
plot-abstract is the base object for all plots.
Size changes on plots are saved to the server on the save button.
Add sortable mixin.
2016-07-17 18:43:08 +02:00

10 lines
227 B
JavaScript

import Ember from 'ember';
import PlotAbstract from './plot-abstract';
export default PlotAbstract.extend({
tagName: 'div',
classNames: [ 'plotContainer', 'plotTable' ],
minWidth_resize: 200,
minHeight_resize: 60
});