1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-11 06:24:22 +00:00
TiddlyWiki5/tw5dropbox/plugins/logoutmacro.js
2012-10-11 15:43:34 +01:00

42 lines
634 B
JavaScript

/*\
title: $:/plugins/dropbox/logoutmacro.js
type: application/javascript
module-type: macro
Dropbox logout plugin
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.info = {
name: "dropbox.logout",
params: {}
};
exports.handleEvent = function (event) {
if(event.type === "click") {
$tw.plugins.dropbox.logout();
}
};
exports.executeMacro = function() {
// Create the link
var child = $tw.Tree.Element(
"a",
null,
this.content,
{
events: ["click"],
eventHandler: this
}
);
child.execute(this.parents,this.tiddlerTitle);
return child;
};
})();