| Summary: | pluginRegistry has invalid typeof comparison | ||
|---|---|---|---|
| Product: | [ECD] Orion | Reporter: | Michael Rennie <Michael_Rennie> |
| Component: | Client | Assignee: | Simon Kaegi <simon_kaegi> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 8.0 | ||
| Target Milestone: | 8.0 | ||
| Hardware: | PC | ||
| OS: | Mac OS X | ||
| Whiteboard: | |||
~line 286 var response = typeof messageId === undefined ? null : { id: messageId, result: null, error: null }; should be var response = typeof messageId === 'undefined' ? null : { id: messageId, result: null, error: null }; https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/typeof#Description