|
window.addEventListener("flutterInAppWebViewPlatformReady", null); |
|
|
|
|
|
$('#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; |
|
}); |
|
|