add missing semicolon
This commit is contained in:
parent
6bb4d8a18c
commit
49cff1cfb8
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ c3nav = {
|
|||
$.getJSON('/api/locations/?searchable', function (data) {
|
||||
for (var i = 0; i < data.length; i++) {
|
||||
var location = data[i];
|
||||
location.elem = $('<div class="location">').append($('<span>').text(location.title))
|
||||
location.elem = $('<div class="location">').append($('<span>').text(location.title));
|
||||
location.elem.append($('<small>').text(location.subtitle));
|
||||
location.title_words = location.title.toLowerCase().split(/\s+/);
|
||||
location.match = ' ' + location.title_words.join(' ') + ' ';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue