1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-11-01 16:13:00 +00:00

Stop base64 encoding context scope IDs

The base64 encoding wasn't working on node.js, and is a bit messy
This commit is contained in:
Jeremy Ruston
2013-01-23 12:35:21 +00:00
parent 7effc49401
commit bae48d5526
2 changed files with 1 additions and 12 deletions

View File

@@ -269,7 +269,7 @@ ElementRenderer.prototype.getContextScopeId = function() {
guidBits.push("-");
context = context.parentContext;
}
return $tw.utils.toBase64(guidBits.join(""));
return guidBits.join("");
};
exports.element = ElementRenderer