baseUrl: "https://hobbitton-hotel.ru/ hooks: { onError: function(e) { console.error("onError", e); }, onInit: function() { console.log("onInit"); }, onBooking: function(v) { console.log("onBooking", v) } } }); HotelWidget.add({ type: "bookingForm", inline: false, appearance: { // Замените на ID html элемента, в который нужно вставить виджет container: "WidgetVerticalBlockId" } }); HotelWidget.add({ type: "bookingForm", inline: true, appearance: { // Замените на ID html элемента, в который нужно вставить виджет container: "WidgetHorizontalBlockId" } }); HotelWidget.add({ type: "roomsList", appearance: { // Замените на ID html элемента, в который нужно вставить виджет container: "WidgetRoomsListId" } }); HotelWidget.add({ type: "availabilityCalendar", months: 1, appearance: { // Замените на ID html элемента, в который нужно вставить виджет container: "WidgetVerticalAvailabilityCalendarId" } }); HotelWidget.add({ type: "availabilityCalendar", months: 2, appearance: { // Замените на ID html элемента, в который нужно вставить виджет container: "WidgetHorizontalAvailabilityCalendarId" } }); HotelWidget.add({ type: "showCheckAvailabilityButtonForMobileDevices", appearance: { // Замените на ID html элемента, в который нужно вставить виджет container: "WidgetShowCheckAvailabilityButtonForMobileDevicesId" } }); });