mirror of https://github.com/jkjoy/sunpeiwen.git
13 lines
219 B
JavaScript
13 lines
219 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports.definition = {
|
||
|
set: function(v) {
|
||
|
this._setProperty('float', v);
|
||
|
},
|
||
|
get: function() {
|
||
|
return this.getPropertyValue('float');
|
||
|
},
|
||
|
enumerable: true,
|
||
|
configurable: true,
|
||
|
};
|