Twitter Plugin: Add warning if the wiki needs to be saved and reloaded

This commit is contained in:
jeremy@jermolene.com 2020-04-21 21:22:13 +01:00
parent d6ee700bca
commit 3a20fb1e3a
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
/*\
title: $:/plugins/tiddlywiki/twitter/startup.js
type: application/javascript
module-type: startup
Twitter initialisation
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
// Export name and synchronous status
exports.name = "twitter";
exports.before = ["startup"];
exports.synchronous = true;
exports.startup = function() {
var logger = new $tw.utils.Logger("twitter-plugin");
if($tw.browser && !window.twttr) {
logger.alert("The plugin 'tiddlywiki/twitter' is disabled until this wiki is saved and reloaded again");
}
};
})();