1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-24 10:37:20 +00:00

Changed transclude widget in binary parser to ubertransclude

This commit is contained in:
jeremy@jermolene.com 2022-04-26 13:05:31 +01:00
parent cd0617f033
commit 0e4e037bb7

View File

@ -21,9 +21,9 @@ var BinaryParser = function(type,text,options) {
type: "element", type: "element",
tag: "p", tag: "p",
children: [{ children: [{
type: "transclude", type: "ubertransclude",
attributes: { 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"} download: {type: "indirect", textReference: "!!title"}
}, },
children: [{ children: [{
type: "transclude", type: "ubertransclude",
attributes: { attributes: {
tiddler: {type: "string", value: EXPORT_BUTTON_IMAGE} "$tiddler": {type: "string", value: EXPORT_BUTTON_IMAGE}
} }
}] }]
}; };