File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
opengrok-web/src/main/webapp Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -303,10 +303,10 @@ document.domReady.push(function() {domReadyHistory();});
303
303
<%
304
304
if (count + startIndex > revision1 || (count + startIndex > revision2 && count + startIndex <= revision1 - 1)) {
305
305
// revision1 enabled
306
- } else if (count + startIndex == revision1 ) {
306
+ } else if (count + startIndex == revision1) {
307
307
// revision1 selected
308
308
%> checked="checked"<%
309
- } else if ( count + startIndex <= revision2 ) {
309
+ } else if ( count + startIndex <= revision2) {
310
310
// revision1 disabled
311
311
% > disabled="disabled" <%
312
312
}
@@ -319,12 +319,12 @@ document.domReady.push(function() {domReadyHistory();});
319
319
data-diff-revision =" <%= QueryParameters . REVISION_2_PARAM % >"
320
320
data-revision-path =" <%= path + ' @' + hist. getHistoryEntries(). get(startIndex + count). getRevision() % >"
321
321
<%
322
- if( count + startIndex < revision2 || (count + startIndex > revision2 && count + startIndex <= revision1 - 1) ) {
322
+ if ( count + startIndex < revision2 || (count + startIndex > revision2 && count + startIndex <= revision1 - 1)) {
323
323
// revision2 enabled
324
- } else if( count + startIndex == revision2 ) {
324
+ } else if ( count + startIndex == revision2) {
325
325
// revision2 selected
326
326
%> checked="checked" <%
327
- } else if (count + startIndex >= revision1 ) {
327
+ } else if (count + startIndex >= revision1) {
328
328
// revision2 disabled
329
329
% > disabled="disabled" <%
330
330
}
You can’t perform that action at this time.
0 commit comments