1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-29 23:40:45 +00:00

Extraneous variable definition

This commit is contained in:
Jeremy Ruston 2012-08-25 14:16:21 +01:00
parent 24cb5cb19c
commit 52a51b79aa

View File

@ -35,7 +35,7 @@ Command.prototype.execute = function() {
type = this.params[2] || "text/html",
options = {},
t;
for(var t=3; t<this.params.length; t++) {
for(t=3; t<this.params.length; t++) {
options["with"] = options["with"] || [];
options["with"][t-2] = this.params[t];
}