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 just noticed that the search input does not clear placeholder text on focus. I added this to the template and it works. Thanks for the template.
$( document ).ready(function() { $("input").focus(function() { this.value = ""; }); });
The text was updated successfully, but these errors were encountered:
Good catch. Do you want to submit a pull request for it? It would have to be placed in https://github.com/titledk/silverstripe-cloudy/blob/master/javascript/cloudy.js, and you'd need to add the input's id to it.
Sorry, something went wrong.
No branches or pull requests
I just noticed that the search input does not clear placeholder text on focus. I added this to the template and it works. Thanks for the template.
$( document ).ready(function() {
$("input").focus(function() {
this.value = "";
});
});
The text was updated successfully, but these errors were encountered: