Skip to content

Commit 1d6533c

Browse files
authored
Simplify and expand use of LinkBuilder factory methods (#164)
1 parent 1cde6d3 commit 1d6533c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

genotyping/src/org/labkey/genotyping/view/configure.jsp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,31 +124,31 @@
124124
<td>External source of DNA reference sequences&nbsp;&nbsp;</td>
125125
<td><div id="sequencesQueryDiv"></div></td>
126126
<td>
127-
<%=link("configure").href("#").onClick("chooseView('Choose DNA reference sequences query', 'Select a query that represents an external source of DNA reference sequences. This query will be used periodically to replace the reference sequences that link to results.', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateSequencesQuery(query);}, queries['sequencesQuery'], includeSchema);return false;")%>
127+
<%=link("configure", "#").onClick("chooseView('Choose DNA reference sequences query', 'Select a query that represents an external source of DNA reference sequences. This query will be used periodically to replace the reference sequences that link to results.', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateSequencesQuery(query);}, queries['sequencesQuery'], includeSchema);return false;")%>
128128
<input type="hidden" name="sequencesQuery" id="sequencesQuery">
129129
</td>
130130
</tr>
131131
<tr>
132132
<td>Runs</td>
133133
<td><div id="runsQueryDiv"></div></td>
134134
<td>
135-
<%=link("configure").href("#").onClick("chooseView('Choose runs query', 'Select a query where runs are stored.', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateRunsQuery(query);}, queries['runsQuery'], includeSchema);return false;")%>
135+
<%=link("configure", "#").onClick("chooseView('Choose runs query', 'Select a query where runs are stored.', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateRunsQuery(query);}, queries['runsQuery'], includeSchema);return false;")%>
136136
<input type="hidden" name="runsQuery" id="runsQuery">
137137
</td>
138138
</tr>
139139
<tr>
140140
<td>Samples</td>
141141
<td><div id="samplesQueryDiv"></div></td>
142142
<td>
143-
<%=link("configure").href("#").onClick("chooseView('Choose samples query', 'Select a query that provides a list of samples. This query is filtered by the library number specified in the run to produce the sample.txt file.', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateSamplesQuery(query);}, queries['samplesQuery'], includeSchema);return false;")%>
143+
<%=link("configure", "#").onClick("chooseView('Choose samples query', 'Select a query that provides a list of samples. This query is filtered by the library number specified in the run to produce the sample.txt file.', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateSamplesQuery(query);}, queries['samplesQuery'], includeSchema);return false;")%>
144144
<input type="hidden" name="samplesQuery" id="samplesQuery">
145145
</td>
146146
</tr>
147147
<tr>
148148
<td>Haplotype Definitions</td>
149149
<td><div id="haplotypesQueryDiv"></div></td>
150150
<td>
151-
<%=link("configure").href("#").onClick("chooseView('Choose haplotype definition query', 'Select a query that provides a list of haplotype definitions. ', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateHaplotypesQuery(query);}, queries['haplotypesQuery'], includeSchema);return false;")%>
151+
<%=link("configure", "#").onClick("chooseView('Choose haplotype definition query', 'Select a query that provides a list of haplotype definitions. ', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateHaplotypesQuery(query);}, queries['haplotypesQuery'], includeSchema);return false;")%>
152152
<input type="hidden" name="haplotypesQuery" id="haplotypesQuery">
153153
</td>
154154
</tr>

0 commit comments

Comments
 (0)