GT2/GT2-iOS/node_modules/cssstyle/lib/properties/stopOpacity.js

13 lines
254 B
JavaScript
Raw Normal View History

2018-02-12 17:26:06 +00:00
'use strict';
module.exports.definition = {
set: function (v) {
this._setProperty('stop-opacity', v);
},
get: function () {
return this.getPropertyValue('stop-opacity');
},
enumerable: true,
configurable: true
};