mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-09 11:29:58 +00:00
27 lines
605 B
JavaScript
27 lines
605 B
JavaScript
/*\
|
|
title: $:/plugins/dropbox/dropbox-main.js
|
|
type: application/javascript
|
|
module-type: dropbox-startup
|
|
|
|
Startup the Dropbox main app
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
exports.startup = function(loggedIn) {
|
|
if(loggedIn) {
|
|
$tw.wiki.addTiddler({title: $tw.plugins.dropbox.titleLoadedWikis, text: "no"},true);
|
|
// Load tiddlers
|
|
$tw.plugins.dropbox.loadWikiFiles("/",function() {
|
|
$tw.wiki.addTiddler({title: $tw.plugins.dropbox.titleLoadedWikis, text: "yes"},true);
|
|
console.log("Loaded all wikis",$tw.wiki.tiddlers);
|
|
});
|
|
}
|
|
};
|
|
|
|
})();
|