[fix] [minor] product search to search on textbox keypress
diff --git a/stock/doctype/item/templates/includes/product_search_box.html b/stock/doctype/item/templates/includes/product_search_box.html
index b4fa3e8..00c001b 100644
--- a/stock/doctype/item/templates/includes/product_search_box.html
+++ b/stock/doctype/item/templates/includes/product_search_box.html
@@ -13,17 +13,18 @@
<script>
// redirect to product search page
$(document).ready(function() {
- $('.dropdown-toggle').dropdown()
+ $('.dropdown-toggle').dropdown();
$("#btn-product-search").click(function() {
var txt = $("#product-search").val();
if(txt) {
- window.location.href="product_search.html?q=" + txt;
+ window.location.href="product_search?q=" + txt;
}
return false;
});
$("#product-search").keypress(function(e) {
- if(e.which==13) $("#product-search-btn").click();
- })
- })
+ if(e.which==13) $("#btn-product-search").click();
+ });
+ $(".form-search").on("submit", function() { return false; });
+ });
</script>
</div>
\ No newline at end of file