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
If I only specify a 'move', then the default insert and remove hooks are never called.
Template.listDetail.uihooks({ '.item': { container: '.item-list', move: function onMove(node, next) { $(node).animate({ height: 'toggle', opacity: 'toggle', }, 250).promise().done(() =>{ $(node).insertBefore(next).animate({ height: 'toggle', opacity: 'toggle', }, 250); }); }, }, });
Is this desired behavior? I imagine not....The issue seems to be that the generated wrappers around the passed in hooks return true even if a user specified hook isn't present, thus the defaultCallback never executes.
Will you accept a pull request fixing this?
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
No branches or pull requests
If I only specify a 'move', then the default insert and remove hooks are never called.
Is this desired behavior? I imagine not....The issue seems to be that the generated wrappers around the passed in hooks return true even if a user specified hook isn't present, thus the defaultCallback never executes.
Will you accept a pull request fixing this?
The text was updated successfully, but these errors were encountered: