mirror of
https://github.com/twirl/The-API-Book.git
synced 2025-05-13 21:26:26 +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");
|