bigbluebutton-Github/bigbluebutton-html5/app/lib/environment.js

9 lines
321 B
JavaScript
Raw Normal View History

2016-01-15 13:46:41 +08:00
// used in Flash and HTML to show a legitimate break in the line
2016-01-13 04:15:16 +08:00
this.BREAK_LINE = '<br/>';
2016-01-15 13:46:41 +08:00
// soft return in HTML to signify a broken line without displaying the escaped '<br/>' line break text
2016-01-13 04:15:16 +08:00
this.CARRIAGE_RETURN = '\r';
2016-01-15 13:46:41 +08:00
// handle this the same as carriage return, in case text copied has this
2016-01-13 04:15:16 +08:00
this.NEW_LINE = '\n';