GT2/GT2-Android/node_modules/cssstyle/lib/properties/minWidth.js

13 lines
248 B
JavaScript

'use strict';
module.exports.definition = {
set: function (v) {
this._setProperty('min-width', v);
},
get: function () {
return this.getPropertyValue('min-width');
},
enumerable: true,
configurable: true
};