You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
219 B

  1. 'use strict';
  2. module.exports.definition = {
  3. set: function(v) {
  4. this._setProperty('float', v);
  5. },
  6. get: function() {
  7. return this.getPropertyValue('float');
  8. },
  9. enumerable: true,
  10. configurable: true,
  11. };