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
Under some circumstances when calling SJS code from JS, exceptions thrown by SJS will not get annotated with the correct filename:linenumber under IE and Chrome.
E.g. the following code:
<script type="text/sjs">
throw new Error('foo');
</script>
will give an exception in the Chrome or IE consoles that is not annotated. In Firefox it works ok.
The text was updated successfully, but these errors were encountered:
Under some circumstances when calling SJS code from JS, exceptions thrown by SJS will not get annotated with the correct filename:linenumber under IE and Chrome.
<script type="text/sjs"> throw new Error('foo'); </script>E.g. the following code:
will give an exception in the Chrome or IE consoles that is not annotated. In Firefox it works ok.
The text was updated successfully, but these errors were encountered: