Skip to content

Commit

Permalink
Fix lookup data.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas Kirda committed Mar 6, 2015
1 parent e045d7d commit d15fdaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/controllers/app-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function AppController(utilsService) {


var options = {
lookup: suggestions,
lookup: lookup.suggestions,
minChars: 1,
autoSelectFirst: true,
appendTo: element.parentNode,
Expand All @@ -30,7 +30,7 @@ function AppController(utilsService) {
var element2 = document.getElementById('autocomplete-2');

var options2 = {
lookup: suggestions,
lookup: lookup.suggestions,
minChars: 1,
autoSelectFirst: true,
appendTo: element2.parentNode
Expand Down
2 changes: 1 addition & 1 deletion scripts/suggestions.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var suggestions = {
var lookup = {
"suggestions": [
{
"value": "Chicago Blackhawks",
Expand Down

0 comments on commit d15fdaf

Please sign in to comment.