In the interests of furthering community knowledge, a friend solved
this problem for me and I include the fix here. She just had me go
into the raw code in Notepad++ to edit it.
Search for this snip of text:
TiddlyWiki.prototype.reverseLookup
There's only one like it in the file.
You should see this block of code shortly beneath that line::
if(!sortField)
sortField = "title";
results.sort(function(a,b) {return a[sortField] <
b[sortField] ? -1 :
(a[sortField] == b[sortField] ? 0 : +1);});
return results;
Replace it with this block of text:
if(!sortField)
sortField = "title";
results.sort(function(a,b) {var x =
String(a[sortField]).toLowerCase(); var y =
String(b[sortField]).toLowerCase(); if (x > y) { return 1; } if (x <
y)
{ return -1; } return 0; });
return results;
And voila, fixed.
-- Naamah
On Feb 7, 6:25 am, Naamah <[email protected]> wrote:
> My sidebar menu alphabetizes from A-Z and then from a-z.
>
> In other words, I am looking at something like this:
>
> Albion
> Cimmeria
> Thuringia
> Zenda
> dragon
> manticore
> vampire
> werewolf
>
> I should be seeing this:
>
> Albion
> Cimmeria
> dragon
> manticore
> Thuringia
> vampire
> werewolf
> Zenda
>
> This is incredibly annoying and not okay at all. Is there a plugin
> that will fix this?
>
> Keep in mind, I am completely new to this, and am not what one would
> call code or tech savvy -- which is why I went with what seems to be
> an easily editable wiki program.
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.