boxLayout.js 295 B

12345678910111213
  1. var _default = {
  2. getBoxLayoutParams: function () {
  3. return {
  4. left: this.get('left'),
  5. top: this.get('top'),
  6. right: this.get('right'),
  7. bottom: this.get('bottom'),
  8. width: this.get('width'),
  9. height: this.get('height')
  10. };
  11. }
  12. };
  13. module.exports = _default;