Skip to content

Commit 6528f2c

Browse files
committed
fix(doc): ensure selector is not conflicting
Fix #505
1 parent ab86d47 commit 6528f2c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/documentation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ This filtering widget lets the user choose between ranges of price. Those ranges
734734
{% highlight javascript %}
735735
search.addWidget(
736736
instantsearch.widgets.priceRanges({
737-
container: '#priceranges.widget-container',
737+
container: '#price-ranges',
738738
attributeName: 'price',
739739
labels: {
740740
currency: '$',
@@ -772,7 +772,7 @@ instantsearch.widgets.priceRanges(options);
772772

773773
</div>
774774

775-
<div id="priceranges" class="widget-container"></div>
775+
<div id="price-ranges" class="widget-container"></div>
776776

777777
### Sort
778778

docs/js/doc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
function htmlTabs() {
9696
$('.widget-container').each(function() {
9797
var id = $(this).attr('id');
98-
var buttons = $('.code-box pre:contains("#' + id + '")').closest('.code-box').find('.btn-group');
98+
var buttons = $('.code-box pre:contains("container: \'#' + id + '\'")').closest('.code-box').find('.btn-group');
9999
buttons.append('<button type="button" class="toggle-doc-button html-btn btn btn-default btn-sm" data-widget-container="' + id + '">View HTML</button>');
100100
buttons.after('<pre class="html-container highlight" id="html-' + id + '" style="display: none"></pre>');
101101
});

0 commit comments

Comments
 (0)