1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-04 17:56:56 +00:00

Remove logging

This commit is contained in:
Jeremy Ruston 2024-11-05 22:42:46 +00:00
parent c6074402bb
commit 348f7177a7

View File

@ -24,7 +24,6 @@ exports["colour-darken"] = makeColourOperator(function (c, operator, options) {
exports["colour-oklch"] = makeColourOperator(function (c, operator, options) {
var prop = ((operator.suffixes || [])[0] || ["l"])[0];
console.log("Prop",prop,$tw.utils.parseNumber(operator.operand))
if(["l","c","h"].indexOf(prop) !== -1) {
c.oklch[prop] = $tw.utils.parseNumber(operator.operand);
}