I have found a strange behaviour when I open my tw5 inside Tiddlydesktop and chrome
Part I.
I have a code like this
<div class="tc-table-of-contents">
<<toc-selective-expandable
tag:"slider"
sort:"sort[caption]"
exclude:"-[tag[slideFooter]]">>
</div>
Part II.
And another tiddler with the below code to rearrange the tiddlers tagged with slider
<ol>
<<list-tagged-draggable
tag:$(currentTiddler)$
subFilter:"!tag[slideFooter]"
itemTemplate:"$:/.mr/slider/draggable-template"
emptyMessage:"You don't have any slide in this slider"
>>
</ol>
Note the
$:/.mr/slider/draggable-template is a tiddler as below
<li><$link to={{!!title}}>{{!!title}}</$link></li>
I use the second tiddler and rearrange them, but strangely I see different results when I use Tiddlydesktop and chrome!!!
In chrome I see the toc macro shows the tiddler in the right order, but In Tiddlydesktop I got wrong order! It should be noted that The tiddler in part b shows the correct result in both chrome and tiddlydesktop!!!
What do you think?
Mohammad