mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 02:49:56 +00:00
42 lines
634 B
JavaScript
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;
|
|
};
|
|
|
|
})();
|