You've already forked The-API-Book
mirror of
https://github.com/twirl/The-API-Book.git
synced 2025-12-17 22:17:24 +02:00
13 lines
309 B
JavaScript
13 lines
309 B
JavaScript
|
|
class CustomSearchBox extends ourCoffeeSdk.SearchBox {
|
||
|
|
createOrder(offer) {
|
||
|
|
alert(`Isn't actually implemented (yet)`);
|
||
|
|
return super.createOrder(offer);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
const searchBox = new CustomSearchBox(
|
||
|
|
document.getElementById("search-box"),
|
||
|
|
ourCoffeeSdk.dummyCoffeeApi
|
||
|
|
);
|
||
|
|
searchBox.search("Lungo");
|