Consistent use of space for string continuations

This commit is contained in:
Jesse van den Kieboom 2014-01-02 14:02:14 +01:00
parent d4d1d45952
commit 9b71f69420
2 changed files with 10 additions and 10 deletions

View file

@ -18,11 +18,11 @@ function diff_file(file, lnstate, data)
if (!h)
{
file_body += '<tr class="context">\
<td class="gutter old">' + lnstate.gutterdots + '</td>\
<td class="gutter new">' + lnstate.gutterdots + '</td>\
<td class="gutter type">&nbsp;</td>\
<td></td>\
file_body += '<tr class="context"> \
<td class="gutter old">' + lnstate.gutterdots + '</td> \
<td class="gutter new">' + lnstate.gutterdots + '</td> \
<td class="gutter type">&nbsp;</td> \
<td></td> \
</tr>';
continue;
}
@ -34,7 +34,7 @@ function diff_file(file, lnstate, data)
hunk_header = hunk_header;
file_body += '<tr class="hunk_header">\
file_body += '<tr class="hunk_header"> \
<td class="gutter old">' + lnstate.gutterdots + '</td> \
<td class="gutter new">' + lnstate.gutterdots + '</td> \
<td class="gutter type">&nbsp;</td> \

View file

@ -370,10 +370,10 @@ function update_diff(id, lsettings)
if (eta > 1000)
{
// Show the progress
content.html('\
<div class="loading">\
' + settings.strings.loading_diff + '\
</div>\
content.html(' \
<div class="loading"> \
' + settings.strings.loading_diff + ' \
</div> \
');
update_has_selection();