diff --git a/plugins/tiddlywiki/twitter/startup.js b/plugins/tiddlywiki/twitter/startup.js new file mode 100644 index 000000000..48d106541 --- /dev/null +++ b/plugins/tiddlywiki/twitter/startup.js @@ -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"); + } +}; + +})();