mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 10:07:19 +00:00
Prevent saving un-modified tiddlers
When saving a tiddler we check to see if the tiddler has changed (isModified) if it hasn't then bounce the event to tw-cancel-tiddler instead. Addresses first line item in issue #570
This commit is contained in:
parent
3a78465d2d
commit
5226c7a2fa
@ -296,8 +296,10 @@ NavigatorWidget.prototype.handleSaveTiddlerEvent = function(event) {
|
||||
{title: draftTitle}
|
||||
}
|
||||
));
|
||||
}
|
||||
if(isConfirmed) {
|
||||
} else if(!tiddler.isModified()) {
|
||||
event.type = "tw-cancel-tiddler";
|
||||
this.dispatchEvent(event);
|
||||
} else if(isConfirmed) {
|
||||
// Save the draft tiddler as the real tiddler
|
||||
this.wiki.addTiddler(new $tw.Tiddler(this.wiki.getCreationFields(),tiddler,{
|
||||
title: draftTitle,
|
||||
|
Loading…
Reference in New Issue
Block a user