> I installed Eric's SinglePageModePlugin in this page: > http://cumulus.ei.hv.se/~srk/research/beacon/index.html > and added the suggested lines in zzConfigTweaks: > but it seems not to be working (e.g. click a link in the left-hand > menu and it appears at the top of the page, but does not close the > previous tiddler.
There's a plugin in your doc called "CustomTracker" that is incorrectly hijacking the wrong function... SinglePageModePlugin hijacks Story.prototype.displayTiddler() so it's added features are applied to every 'Story'-classed object present in the TW runtime. However, CustomTracker plugin is replacing story.displayTiddler() in the specific instance of the global 'story' runtime object creating during startup. Because the changed function is being assigned directly to an object, rather than an object *prototype*, the overridden function is being invoked instead of the one assigned by SinglePageModePlugin. If you disable or delete the CustomTracker plugin, things may just start working.... enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios -- 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.

