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
Hi, I got 2 js errors when using saved queries
in vendor/assets/javascripts/wice_grid_saved_queries_init.js.coffee:91 Uncaught ReferenceError: errorExplanation is not defined and error messages are not been displayed
$(notificationMessagesDomId).text(errorExplanation)
should be
$(notificationMessagesDomId).text(errorMessages)
I'm not using jQuery UI but Twitter Bootstrap so in vendor/assets/javascripts/wice_grid_saved_queries_init.js.coffee:97 Uncaught TypeError: Object [object Object] has no method 'effect'
$(queryListId).effect('highlight')
could be
$(queryListId).effect('highlight') if jQuery.ui
Thank you!
The text was updated successfully, but these errors were encountered:
Fixed ( 69e7052 ). Thanks. Better late than never :)
Sorry, something went wrong.
leikind
No branches or pull requests
Hi, I got 2 js errors when using saved queries
in vendor/assets/javascripts/wice_grid_saved_queries_init.js.coffee:91
Uncaught ReferenceError: errorExplanation is not defined and error messages are not been displayed
should be
I'm not using jQuery UI but Twitter Bootstrap so in vendor/assets/javascripts/wice_grid_saved_queries_init.js.coffee:97
Uncaught TypeError: Object [object Object] has no method 'effect'
could be
Thank you!
The text was updated successfully, but these errors were encountered: