mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-09-25 02:31:43 +00:00
Add throttling for changed tiddlers prefixed with $:/temp/volatile/ (#5458)
This commit is contained in:
@@ -221,6 +221,10 @@ exports.isTemporaryTiddler = function(title) {
|
||||
return title && title.indexOf("$:/temp/") === 0;
|
||||
};
|
||||
|
||||
exports.isVolatileTiddler = function(title) {
|
||||
return title && title.indexOf("$:/temp/volatile/") === 0;
|
||||
};
|
||||
|
||||
exports.isImageTiddler = function(title) {
|
||||
var tiddler = this.getTiddler(title);
|
||||
if(tiddler) {
|
||||
@@ -1549,4 +1553,3 @@ exports.slugify = function(title,options) {
|
||||
};
|
||||
|
||||
})();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user