File size: 636 Bytes
f3d0444 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
window.addEventListener("flutterInAppWebViewPlatformReady", null); // add event to send message to app
$('#btn-done').click(function() {
var ocrResult = JSON.parse($('#ocr-result').text() || '""')
, frResult = JSON.parse($('#fr-result').text() || '""')
, url = JSON.parse($('#ocr-type-url').text() || '""');
try { window.flutter_inappwebview.callHandler('ocrResult', ocrResult); } catch(error) {}
try { window.flutter_inappwebview.callHandler('frResult', frResult); } catch(error) {}
try { window.flutter_inappwebview.callHandler('isDone', true); } catch(error) {}
window.location.href = url;
});
|