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

13 lines
282 B
JavaScript
Raw Normal View History

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