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
グローバルセレクタでオブジェクトや要素を指定してバインドして、unbind時にバインド対象要素が参照できない時、正しくアンバインドできない。以下のようなコードで動作を確認した。
h5.core.controller('body', { __name:'controller', target: $('.target'), '{this.target} click': function(){ console.log('binded!'); } }).readyPromise.done(function(){ this.target = null; // this.targetにnullを代入 this.unbind(); // unbind $('.target').click(); // "binded!" });
The text was updated successfully, but these errors were encountered:
5652a29 対応しました。バインドした時のターゲットを覚えておいてunbindするようにしました。
Sorry, something went wrong.
c794b7f 変数名を修正。
fukudayasuo
No branches or pull requests
グローバルセレクタでオブジェクトや要素を指定してバインドして、unbind時にバインド対象要素が参照できない時、正しくアンバインドできない。以下のようなコードで動作を確認した。
The text was updated successfully, but these errors were encountered: