This script is an attempt to color ‘references’ in the toolbar red if
the tiddler has references.
It doesn't work.
<script>
var title = store.getTiddler(this);
var references = store.getReferringTiddlers(title);
if (references.length > 0) {
jQuery('.command_references').css("color","red");
}
</script>
Any hints and tips?
thanks in advance
Alex
--
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.