v1.9.818.44 bundle.js修正メモ(上行が検索文字列・下行が置換文字列)

ページ内検索でIMEが無効になるバグの対処
webview.stopFinding()
webview.stopFinding("clear")

ページ内検索で変換確定時にページ内検索を実行
onCompositionEnd:function(){this._isIMEOpen=!1}
onCompositionEnd:function(){this._isIMEOpen=!1;if(this.refs.inputText.id==="fip-input-text"){this.onFindInPageTextChanged()}}

UTF-8以外でエンコードされたURLで正常に動作しなくなるバグの修正(v1.10.829.3 からコピペ)
function a(e){return e?decodeURI((0,o.default)(e)):""}
function a(e){if(!e)return"";try{return decodeURI((0,o.default)(e))}catch(t){return e}}

function a(e){return e?decodeURIComponent((0,o.default)(e)):""}
function a(e){if(!e)return"";try{return decodeURIComponent((0,o.default)(e))}catch(t){return e}}