1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-01-30 10:54:44 +00:00

AWS Plugin: Fix for SJCL changes

This commit is contained in:
Jeremy Ruston 2024-06-06 11:29:02 +01:00
parent 352272905e
commit 423075e89d

View File

@ -4,13 +4,13 @@ title: $:/plugins/tiddlywiki/aws/lambda/sjcl
(function() { (function() {
var module; var module, window = {};
global.sjcl = (function() { global.sjcl = (function() {
{{ $:/library/sjcl.js ||$:/core/templates/plain-text-tiddler}} {{ $:/library/sjcl.js ||$:/core/templates/plain-text-tiddler}}
return sjcl; return window.sjcl;
})(); })();