You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like a good problem ,View Console Message
Exiting potential infinite loop at line 3. To disable loop protection: add "// noprotect" to your code
add // noprotect can solve this problem
in runner.js
```js
/**
* Update the loop protoction hit function to send an event up to the parent
* window so we can insert it in our error UI
*/
loopProtect.hit = function (line) {
console.warn('Exiting potential infinite loop at line ' + line + '. To disable loop protection: add "// noprotect" to your code');
runner.postMessage('loopProtectHit', line);
}
Screenshot: https://p4.ssl.qhimg.com/t01877ae91647926e9d.png
The text was updated successfully, but these errors were encountered: