Skip to content
This repository was archived by the owner on Jan 16, 2024. It is now read-only.

Commit b7d2cee

Browse files
author
matthew
committed
[svn] Fix disappearing param names.
--HG-- branch : ProveIt
1 parent 52f08c4 commit b7d2cee

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

content/test.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1140,18 +1140,20 @@ com.elclab.proveit = {
11401140
newline.hidden = false;
11411141
com.elclab.proveit.getSidebarDoc().getElementById("editlist").appendChild(newline);
11421142

1143-
left.id = "" + item + "namec";
1144-
right.id = "" + item + "value";
1145-
com.elclab.proveit.getSidebarDoc().getElementById(item + "namec").value = item;
1146-
11471143
if(fieldType)
11481144
{
1145+
left.id = "" + item + "namec";
1146+
right.id = "" + item + "value";
1147+
com.elclab.proveit.getSidebarDoc().getElementById(item + "namec").value = item;
1148+
11491149
com.elclab.proveit.log("list[item]: " + list[item]);
11501150
com.elclab.proveit.getSidebarDoc().getElementById(item + "value").value = list[item];
11511151
}
11521152
else
1153-
com.elclab.proveit.getSidebarDoc().getElementById(item + "value").value = "";
1154-
1153+
{
1154+
//com.elclab.proveit.getSidebarDoc().getElementById(item + "value").value = "";
1155+
}
1156+
11551157
var label = com.elclab.proveit.getSidebarDoc().getElementById("star").cloneNode(true);
11561158
label.id = "";
11571159
label.style.display = "-moz-box"; // back to default display prop.

install.rdf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<Description about="urn:mozilla:install-manifest">
77
<em:name>ProveIt</em:name>
8-
<em:version>1.0.620</em:version>
8+
<em:version>1.0.622</em:version>
99
<em:description>A Extension to facilitate the insertion of citation tags in Wikipedia.</em:description>
1010
<em:creator>Christopher Jordan and Matthew Flaschen</em:creator>
1111
<em:id>ProveIt@somedomain.com</em:id>

0 commit comments

Comments
 (0)