Hi there.
I've been playing around with this code:
Story.prototype.onTiddlerMouseOver_orig =
Story.prototype.onTiddlerMouseOver;
Story.prototype.onTiddlerMouseOver = function(e)
{
timeStamp = new Date();
displayMessage(timeStamp);
return Story.prototype.onTiddlerMouseOver_orig.apply(this);
}
- but I need some verification.. I'm seeing that everytime I mouse
over a tiddler, the timestamp pops up 6 times, so I was wondering;
should I try and put a delay effect by letting the function check a
timestamp outside of the function, and when it's over 5-10 seconds,
then it attempts the ajax call, or does the ajax thing already ignore
multiple calls and only answers when it's ready?
if I add a timestamp outside of the function.. how should I add it?
I'm not quite certain how to best designate the variable so it behaves
well with the rest of the DOM.
--
You received this message because you are subscribed to the Google Groups
"TiddlyWikiDev" 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/tiddlywikidev?hl=en.