Commit e364662d8d2ddd47647bc7160f4384c25a2de6d0

Authored by Victor Costa
1 parent 4519e18f

Fix autocomplete

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
js/main.js
... ... @@ -497,7 +497,7 @@ define(['handlebars','handlebars_helpers'], function(Handlebars){
497 497 source: availableTags,
498 498 minLength: 3,
499 499 select: function( event, ui ) {
500   - updateHash(ui.item.value);
  500 + Main.updateHash(ui.item.value);
501 501 return false;
502 502 },
503 503 appendTo: '#search-input-container',
... ...