mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/RoboCommander.git
synced 2026-06-15 20:16:00 +00:00
13 lines
268 B
JavaScript
13 lines
268 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
module.exports.definition = {
|
||
|
|
set: function (v) {
|
||
|
|
this._setProperty('list-style-position', v);
|
||
|
|
},
|
||
|
|
get: function () {
|
||
|
|
return this.getPropertyValue('list-style-position');
|
||
|
|
},
|
||
|
|
enumerable: true,
|
||
|
|
configurable: true
|
||
|
|
};
|