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>
|
<textarea>
|
||||||
// Removes the newline at the end of a string, if present.
|
// Removes the newline at the end of a string, if present.
|
||||||
function trim_newline(s) {
|
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>
|
</textarea>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user