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
I found the recent commit 293933c changes in src/app.coffee will makes the .atwho('run') method do nothing.
src/app.coffee
.atwho('run')
At.js/src/api.coffee
Line 13 in a627b5f
In previous versions, the example in the document used the atwho('run') method to display the menu after loading the data.
atwho('run')
https://github.com/ichord/At.js/wiki/APIs#run
But now, I have to make the following changes to show the atwho menu:
$.getJSON(url, params, function(data) { - $inputor.atwho('load',':', data).atwho('run'); + $inputor.atwho('load',':', data).data('atwho').dispatch($.Event('click')); });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found the recent commit 293933c changes in
src/app.coffee
will makes the.atwho('run')
method do nothing.At.js/src/api.coffee
Line 13 in a627b5f
In previous versions, the example in the document used the
atwho('run')
method to display the menu after loading the data.https://github.com/ichord/At.js/wiki/APIs#run
But now, I have to make the following changes to show the atwho menu:
The text was updated successfully, but these errors were encountered: