You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
524 B
21 lines
524 B
"use strict";
|
|
exports.__esModule = true;
|
|
var SHADOW_PROPS = {
|
|
'shadowBlur': 1,
|
|
'shadowOffsetX': 1,
|
|
'shadowOffsetY': 1,
|
|
'textShadowBlur': 1,
|
|
'textShadowOffsetX': 1,
|
|
'textShadowOffsetY': 1,
|
|
'textBoxShadowBlur': 1,
|
|
'textBoxShadowOffsetX': 1,
|
|
'textBoxShadowOffsetY': 1
|
|
};
|
|
function default_1(ctx, propName, value) {
|
|
if (SHADOW_PROPS.hasOwnProperty(propName)) {
|
|
return value *= ctx.dpr;
|
|
}
|
|
return value;
|
|
}
|
|
exports["default"] = default_1;
|
|
//# sourceMappingURL=fixShadow.js.map
|