Index: src/d8.js |
=================================================================== |
--- src/d8.js (revision 1024) |
+++ src/d8.js (working copy) |
@@ -705,9 +705,14 @@ |
details.text = result; |
break; |
+ case 'continue': |
+ details.text = "(running)"; |
+ break; |
+ |
default: |
details.text = |
- 'Response for unknown command \'' + response.command + '\''; |
+ 'Response for unknown command \'' + response.command + '\'' + |
+ ' (' + json_response + ')'; |
} |
} catch (e) { |
details.text = 'Error: "' + e + '" formatting response'; |