1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-30 07:50:47 +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",
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}
}
}]
};