Skip to content

Commit

Permalink
chore(responsive): responsive: true by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerska committed Apr 26, 2016
1 parent 45acb99 commit b60cf16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Here is a full breakdown of the available options for the JavaScript library:
poweredBy: true, // show the "Search by Algolia" link (required if you're on Algolia's FREE plan)
color: '#D4D4D4', // main color (used for links)
highlightColor: '#D4D4D4', // highlight color to emphasize matching text
responsive: false, // responsive instantsearch page
responsive: true, // responsive instantsearch page
autocomplete: {
enabled: true, // is the autocomplete feature enabled?
inputSelector: '#query', // the DOM selector to select the search box
Expand Down
2 changes: 1 addition & 1 deletion app/src/AlgoliasearchZendeskHC.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const optionsStructure = {required: true, type: 'Object', children: {
}},
instantsearchPage: {type: 'function', value: instantsearchPage},
poweredBy: {type: 'boolean', value: true},
responsive: {type: 'boolean', value: false},
responsive: {type: 'boolean', value: true},
subdomain: {type: 'string', required: true},
translations: {type: 'Object', value: {}}
}};
Expand Down
2 changes: 1 addition & 1 deletion docs/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Here is a full breakdown of the available options for the JavaScript library:
poweredBy: true, // show the "Search by Algolia" link (required if you're on Algolia's FREE plan)
color: '#D4D4D4', // main color (used for links)
highlightColor: '#D4D4D4', // highlight color to emphasize matching text
responsive: false, // responsive instantsearch page
responsive: true, // responsive instantsearch page
autocomplete: {
enabled: true, // is the autocomplete feature enabled?
inputSelector: '#query', // the DOM selector to select the search box
Expand Down

0 comments on commit b60cf16

Please sign in to comment.