After a bit more poking around I found what seems to be the answer.
Add these lines at the end of the TiddlyLockPlugin:

//
// OVERRIDE easyEdit()
//
TiddlyLock.easyEdit = config.commands.easyEdit.handler;
config.commands.easyEdit.handler = function(event,src,title)
{
  if (TLChangesAllowed())
  {
    TiddlyLock.OldLockData = TiddlyLock.LockData;
    TLLock();
  }
  var ret = TiddlyLock.easyEdit.apply(this,arguments);
  return ret;
}

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to