mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-31 10:49:09 +00:00
minor fixes to website
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
{% if parent_groups and (parent_groups|length) > 1 %}
|
||||
<div class="container">
|
||||
<ul class="breadcrumb">
|
||||
{% for ig in parent_groups[:-1] %}
|
||||
<li><a href="{{ ig.page_name }}.html">{{ ig.name }}</a></li>
|
||||
{% endfor %}
|
||||
<li class="active">{{ parent_groups[-1].name }}</li>
|
||||
</ul>
|
||||
</div>
|
||||
{% endif %}
|
||||
@@ -1,4 +1,4 @@
|
||||
<div class="container" style="margin-bottom: 7px;">
|
||||
<div style="margin-bottom: 20px;">
|
||||
<form class="form-inline form-search row">
|
||||
<div class="input-group col-md-4 col-md-offset-8">
|
||||
<input class="form-control" type="text" id="product-search" placeholder="Product Search...">
|
||||
@@ -10,7 +10,7 @@
|
||||
</form>
|
||||
<script>
|
||||
// redirect to product search page
|
||||
$(document).ready(function() {
|
||||
frappe.ready(function() {
|
||||
$('.dropdown-toggle').dropdown();
|
||||
$("#btn-product-search").click(function() {
|
||||
var txt = $("#product-search").val();
|
||||
@@ -25,4 +25,4 @@
|
||||
$(".form-search").on("submit", function() { return false; });
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user