@timum/booking 1.3.8 → 1.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/build/booking.js +1 -1
- package/build/booking.umd.cjs +79 -70
- package/build/{index-4a032f6f.js → index-168791e8.js} +3707 -3690
- package/build/{index-08980e1b.js → index-1e7ecbc6.js} +1 -1
- package/build/{index-a58982a8.js → index-4ba22475.js} +1 -1
- package/build/{index-5115a693.js → index-5da99105.js} +1 -1
- package/build/{index-e761f9f5.js → index-679edfba.js} +1 -1
- package/build/{index-3670f773.js → index-83094fcd.js} +1 -1
- package/build/{index-c1d5f66a.js → index-96e26452.js} +1 -1
- package/build/{index-30efaf6c.js → index-a01595af.js} +1 -1
- package/build/{index-8abff60c.js → index-d7f541d3.js} +1 -1
- package/build/{index-785f7ef1.js → index-e48c03bd.js} +1 -1
- package/build/{index-7d1a5fe6.js → index-e7b0d74f.js} +1 -1
- package/examples/usingFullCalendar.htm +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -67,7 +67,7 @@ Add the following code to your webpage:
|
|
|
67
67
|
```html
|
|
68
68
|
<div id="bookingjs" style="margin: 32px"></div>
|
|
69
69
|
<script type="module">
|
|
70
|
-
import * as timum from 'https://cdn.timum.de/bookingjs/booking.js';
|
|
70
|
+
import * as timum from 'https://cdn.timum.de/bookingjs/1/booking.js';
|
|
71
71
|
|
|
72
72
|
timum.init({ ref: 'booking-widget-demo-resource@timum' });
|
|
73
73
|
</script>
|
|
@@ -82,7 +82,7 @@ Alternatively, you can add `ref` to your url as a parameter. This allows you to
|
|
|
82
82
|
```html
|
|
83
83
|
<div id="bookingjs" style="margin: 32px"></div>
|
|
84
84
|
<script type="module">
|
|
85
|
-
import * as timum from 'https://cdn.timum.de/bookingjs/booking.js';
|
|
85
|
+
import * as timum from 'https://cdn.timum.de/bookingjs/1/booking.js';
|
|
86
86
|
|
|
87
87
|
timum.init(); //<- no need for the reference here
|
|
88
88
|
</script>
|
package/build/booking.js
CHANGED