Files
junisaber/src/components/text-uppercase.js
2018-09-18 02:44:24 -07:00

10 lines
197 B
JavaScript

AFRAME.registerComponent('text-uppercase', {
schema: {
value: {type: 'string'}
},
update: function () {
this.el.setAttribute('text', 'value', this.data.value.toUpperCase());
}
});