1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-01 17:53:15 +00:00

Coding style tweak

This commit is contained in:
jeremy@jermolene.com 2022-09-03 16:36:36 +01:00
parent 00b6645c94
commit 1b08cd40bf
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ exports.parse = function() {
};
$tw.utils.each(params,function(paramValue,index) {
var name = "" + index;
transcludeNode.attributes["" + index] = {
transcludeNode.attributes[name] = {
name: name,
type: "string",
value: paramValue

View File

@ -40,7 +40,7 @@ exports.parse = function() {
};
$tw.utils.each(params,function(paramValue,index) {
var name = "" + index;
transcludeNode.attributes["" + index] = {
transcludeNode.attributes[name] = {
name: name,
type: "string",
value: paramValue