From 0e4e037bb7a5b91de44f608af17fc449aa14cc35 Mon Sep 17 00:00:00 2001 From: "jeremy@jermolene.com" Date: Tue, 26 Apr 2022 13:05:31 +0100 Subject: [PATCH] Changed transclude widget in binary parser to ubertransclude --- core/modules/parsers/binaryparser.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/modules/parsers/binaryparser.js b/core/modules/parsers/binaryparser.js index fb3d38678..520896c55 100644 --- a/core/modules/parsers/binaryparser.js +++ b/core/modules/parsers/binaryparser.js @@ -21,9 +21,9 @@ var BinaryParser = function(type,text,options) { type: "element", tag: "p", children: [{ - type: "transclude", + type: "ubertransclude", attributes: { - tiddler: {type: "string", value: BINARY_WARNING_MESSAGE} + "$tiddler": {type: "string", value: BINARY_WARNING_MESSAGE} } }] }; @@ -36,9 +36,9 @@ var BinaryParser = function(type,text,options) { download: {type: "indirect", textReference: "!!title"} }, children: [{ - type: "transclude", + type: "ubertransclude", attributes: { - tiddler: {type: "string", value: EXPORT_BUTTON_IMAGE} + "$tiddler": {type: "string", value: EXPORT_BUTTON_IMAGE} } }] };