Merge pull request #233 from sguy/master
Fixed javascript function names for tutorial/T9
This commit is contained in:
commit
e1ce514750
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ function renderBook(book)
|
||||||
function searchBooks()
|
function searchBooks()
|
||||||
{
|
{
|
||||||
var q = $('#q').val();
|
var q = $('#q').val();
|
||||||
getbooks(q, updateResults, console.log)
|
getBooks(q, updateResults, console.log)
|
||||||
}
|
}
|
||||||
|
|
||||||
searchBooks();
|
searchBooks();
|
||||||
|
@ -54,7 +54,7 @@ function update(id, val)
|
||||||
|
|
||||||
function refresh()
|
function refresh()
|
||||||
{
|
{
|
||||||
getpoint(f, console.log);
|
getPoint(f, console.log);
|
||||||
}
|
}
|
||||||
|
|
||||||
window.setInterval(refresh, 200);
|
window.setInterval(refresh, 200);
|
||||||
|
|
Loading…
Reference in a new issue