mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-24 09:26:14 -04:00
fixed the keystroke_urls_become_clickable.js test
This commit is contained in:
parent
7fd23c8d71
commit
35cea1e542
2 changed files with 20 additions and 15 deletions
|
@ -98,7 +98,11 @@ var helper = {};
|
|||
}}
|
||||
|
||||
var intervalCheck = setInterval(function(){
|
||||
var passed = conditionFunc();
|
||||
var passed = false;
|
||||
|
||||
try {
|
||||
passed = conditionFunc();
|
||||
} catch(e){}
|
||||
|
||||
if(passed){
|
||||
clearInterval(intervalCheck);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue