9 lines
321 B
JavaScript
Executable File
9 lines
321 B
JavaScript
Executable File
// used in Flash and HTML to show a legitimate break in the line
|
|
this.BREAK_LINE = '<br/>';
|
|
|
|
// soft return in HTML to signify a broken line without displaying the escaped '<br/>' line break text
|
|
this.CARRIAGE_RETURN = '\r';
|
|
|
|
// handle this the same as carriage return, in case text copied has this
|
|
this.NEW_LINE = '\n';
|