Files
habitica/website/common/script/content/appearance/chair.js
Brian Fenton 53405aa586 Handleless wheelchair options (#10572)
* removing duplicate keys

* adding chair assets and wiring them to customize screen

* adding customization data for new wheelchair types

* removing an unused locale key and moving the code style override closer to the affected area

* explicitly re-enabilng linting rule

* adding button-sized chair assets

* updating assets to new resolution

* moving chair keys into component data
2018-08-17 12:23:43 +02:00

20 lines
375 B
JavaScript

import prefill from './prefill.js';
export default prefill({
none: {},
black: {},
blue: {},
green: {},
pink: {},
red: {},
yellow: {},
/* eslint-disable quote-props */
'handleless_black': {},
'handleless_blue': {},
'handleless_green': {},
'handleless_pink': {},
'handleless_red': {},
'handleless_yellow': {},
/* eslint-enable quote-props */
});