mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
tests: Fix helper.linesDiv()
This commit is contained in:
parent
239bc2d426
commit
4d6ec1909a
1 changed files with 2 additions and 1 deletions
|
@ -49,7 +49,8 @@ helper.edit = async (message, line) => {
|
|||
*
|
||||
* @returns {Array.<HTMLElement>} array of divs
|
||||
*/
|
||||
helper.linesDiv = () => helper.padInner$('.ace-line').map(function () { return $(this); }).get();
|
||||
helper.linesDiv =
|
||||
() => helper.padInner$('.ace-line').map(function () { return helper.padInner$(this); }).get();
|
||||
|
||||
/**
|
||||
* The pad text as an array of lines
|
||||
|
|
Loading…
Reference in a new issue