mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-26 10:00:34 +00:00
Remove $tw.syncer global from syncer.js
This commit is contained in:
parent
4b05608ad5
commit
d57446f1e4
@ -58,30 +58,30 @@ function Syncer(options) {
|
|||||||
});
|
});
|
||||||
// Listen out for login/logout/refresh events in the browser
|
// Listen out for login/logout/refresh events in the browser
|
||||||
$tw.rootWidget.addEventListener("tw-login",function() {
|
$tw.rootWidget.addEventListener("tw-login",function() {
|
||||||
$tw.syncer.handleLoginEvent();
|
self.handleLoginEvent();
|
||||||
});
|
});
|
||||||
$tw.rootWidget.addEventListener("tw-logout",function() {
|
$tw.rootWidget.addEventListener("tw-logout",function() {
|
||||||
$tw.syncer.handleLogoutEvent();
|
self.handleLogoutEvent();
|
||||||
});
|
});
|
||||||
$tw.rootWidget.addEventListener("tw-server-refresh",function() {
|
$tw.rootWidget.addEventListener("tw-server-refresh",function() {
|
||||||
$tw.syncer.handleRefreshEvent();
|
self.handleRefreshEvent();
|
||||||
});
|
});
|
||||||
// Install the save action handlers
|
// Install the save action handlers
|
||||||
$tw.rootWidget.addEventListener("tw-save-wiki",function(event) {
|
$tw.rootWidget.addEventListener("tw-save-wiki",function(event) {
|
||||||
$tw.syncer.saveWiki({
|
self.saveWiki({
|
||||||
template: event.param,
|
template: event.param,
|
||||||
downloadType: "text/plain"
|
downloadType: "text/plain"
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
$tw.rootWidget.addEventListener("tw-auto-save-wiki",function(event) {
|
$tw.rootWidget.addEventListener("tw-auto-save-wiki",function(event) {
|
||||||
$tw.syncer.saveWiki({
|
self.saveWiki({
|
||||||
method: "autosave",
|
method: "autosave",
|
||||||
template: event.param,
|
template: event.param,
|
||||||
downloadType: "text/plain"
|
downloadType: "text/plain"
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
$tw.rootWidget.addEventListener("tw-download-file",function(event) {
|
$tw.rootWidget.addEventListener("tw-download-file",function(event) {
|
||||||
$tw.syncer.saveWiki({
|
self.saveWiki({
|
||||||
method: "download",
|
method: "download",
|
||||||
template: event.param,
|
template: event.param,
|
||||||
downloadType: "text/plain"
|
downloadType: "text/plain"
|
||||||
|
Loading…
Reference in New Issue
Block a user