25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

floodOpacity.js 256 B

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