kopia lustrzana https://github.com/miklobit/TiddlyWiki5
fix multiply displayed tiddlers zoomin error
rodzic
ef971bb521
commit
45e0f09ade
|
@ -151,6 +151,11 @@ ZoominListView.prototype.remove = function(widget) {
|
|||
removeElement();
|
||||
return;
|
||||
}
|
||||
// Abandon if hidden
|
||||
if(targetElement.style.display != "block" ) {
|
||||
removeElement();
|
||||
return;
|
||||
}
|
||||
// Set up the tiddler that is being closed
|
||||
$tw.utils.addClass(targetElement,"tc-storyview-zoomin-tiddler");
|
||||
$tw.utils.setStyle(targetElement,[
|
||||
|
@ -203,4 +208,4 @@ ZoominListView.prototype.remove = function(widget) {
|
|||
|
||||
exports.zoomin = ZoominListView;
|
||||
|
||||
})();
|
||||
})();
|
||||
|
|
Ładowanie…
Reference in New Issue