1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2026-05-04 20:51:30 +00:00

fix: remove fn wrappers and unneeded comments (#9637)

This commit is contained in:
Saq Imtiaz
2026-02-05 17:06:32 +01:00
committed by GitHub
parent d376ada241
commit 0673426f5a
2 changed files with 0 additions and 9 deletions

View File

@@ -6,10 +6,7 @@ module-type: saver
Handles saving changes via window.postMessage() to the window.parent
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
/*
@@ -63,4 +60,3 @@ exports.create = function(wiki) {
return new PostMessageSaver(wiki);
};
})();

View File

@@ -8,10 +8,7 @@ Messaging utilities for use with window.postMessage() etc.
This module intentionally has no dependencies so that it can be included in non-TiddlyWiki projects
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
var RESPONSE_TIMEOUT = 2 * 1000;
@@ -122,5 +119,3 @@ BrowserMessagingPublisher.prototype.close = function() {
};
exports.BrowserMessagingPublisher = BrowserMessagingPublisher;
})();