Skip to content

Commit dfaf655

Browse files
committed
Whitespace (fix indent and remove trailing spaces)
1 parent 6093f42 commit dfaf655

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/robot/htmldata/libdoc/libdoc.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,8 +350,8 @@ <h2 id="Shortcuts">Shortcuts</h2>
350350
<div class='shortcuts'>
351351
{{each keywords}}
352352
<a href="#${encodeURIComponent($value.name)}"
353-
class="{{if $value.matched === false}}no-{{/if}}match"
354-
title="${$value.shortdoc}">${$value.name}</a>
353+
class="{{if $value.matched === false}}no-{{/if}}match"
354+
title="${$value.shortdoc}">${$value.name}</a>
355355
{{if $index < keywords.length-1}}
356356
<span class="shortcut-list-separator">&middot;</span>
357357
{{/if}}

src/robot/htmldata/rebot/log.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ function expandElement(item, retryCount) {
5656
// .css is faster than .show and .show w/ callback is terribly slow
5757
children.css({'display': 'block'});
5858
// in rare cases on large logs concurrent expanding fails => retry
59-
if (children.css('display') != 'block' && retryCount > 0) {
59+
if (children.css('display') != 'block' && retryCount > 0) {
6060
console.debug('expandElement '+item.id+' failed! planning retry...');
61-
setTimeout(function() { expandElement(item, retryCount-1); }, 0);
61+
setTimeout(function() { expandElement(item, retryCount-1); }, 0);
6262
return;
6363
}
6464
populateChildren(item.id, children, item.childrenNames);

0 commit comments

Comments
 (0)