Small fixes
This commit is contained in:
parent
ed24813f2c
commit
0ee51601d8
|
@ -611,7 +611,11 @@ references, we need to get rid of the newline first.</p>
|
|||
<textarea>
|
||||
// Removes the newline at the end of a string, if present.
|
||||
function trim_newline(s) {
|
||||
if (s[s.length-1] == '\n') { return s.substring(0, s.length-1); } else { return s; }
|
||||
if (s[s.length-1] == '\n') {
|
||||
return s.substring(0, s.length-1);
|
||||
} else {
|
||||
return s;
|
||||
}
|
||||
}
|
||||
</textarea>
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user