We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a60345 commit 328f341Copy full SHA for 328f341
Example Apps/ExampleApp.html
@@ -29,7 +29,7 @@ <h1>WebViewJavascriptBridge Demo</h1>
29
var log = document.getElementById('log')
30
var el = document.createElement('div')
31
el.className = 'logLine'
32
- el.innerHTML = uniqueId++ + '. ' + message + (data ? ':<br/>' + JSON.stringify(data) : '')
+ el.innerHTML = uniqueId++ + '. ' + message + ':<br/>' + JSON.stringify(data)
33
if (log.children.length) { log.insertBefore(el, log.children[0]) }
34
else { log.appendChild(el) }
35
}
0 commit comments