We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[button]タグに指定したenterseがmousedownイベント(マウスを押下した直後)でも鳴ります。 hoverイベント時の動作は問題ありません。
tyranoscript/tyrano/plugins/kag/kag.tag.js
Lines 6427 to 6435 in ae07548
6434行目をreturn trueでなくreturn falseに修正することで、上記問題が発生しなくなることは確認しました。 また[glink]タグと整合させるとreturn falseが正しそうです。 [glink]タグではこの問題が起きないことを確認しました。
return true
return false
ただしコメント文にある //falseを返すと ipad などの一部環境で不具合とあるので 単純にここを変更するだけで終りそうにないという認識です。 #この現象はWindows環境のみで確認しています。
//falseを返すと ipad などの一部環境で不具合
The text was updated successfully, but these errors were encountered:
No branches or pull requests
[button]タグに指定したenterseがmousedownイベント(マウスを押下した直後)でも鳴ります。
hoverイベント時の動作は問題ありません。
tyranoscript/tyrano/plugins/kag/kag.tag.js
Lines 6427 to 6435 in ae07548
6434行目を
return true
でなくreturn false
に修正することで、上記問題が発生しなくなることは確認しました。また[glink]タグと整合させると
return false
が正しそうです。[glink]タグではこの問題が起きないことを確認しました。
ただしコメント文にある
//falseを返すと ipad などの一部環境で不具合
とあるので単純にここを変更するだけで終りそうにないという認識です。
#この現象はWindows環境のみで確認しています。
The text was updated successfully, but these errors were encountered: