You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+**added** method `jsPanel.strToHtml(str)` converting a DOMString to a `DocumentFragment`.
6
14
+**added** option `opacity`
7
15
+**bugfix** in _modal_ extension concerning the use of `onclosed` callback.
8
16
+**bugfix** in `autoposition` parameter of option `position`.
17
+
+**bugfix** in option `onwindowresize`.
9
18
+**updated**`jsPanel.ajax()` in order to improve its usability as general purpose AJAX tool.<br>**This update might require a change in your code if you use `jsPanel.ajax()` and/or option `contentAjax`.**
10
19
+**updated**`jsPanel.fetch()` in order to improve its usability as general purpose Fetch tool.<br>**This update might require a change in your code if you use `jsPanel.fetch()` and/or option `contentFetch`.**
11
20
+**updated** option `contentAjax` optionally loads only a page fragment.
> The v4.11.0-beta release includes updated methods `jsPanel.ajax()` and `jsPanel.fetch()` which also affect options `contentAjax` and `contentFetch`. These updates might break existing code. So please check the docs for this beta release on https://beta.jspanel.de/
Copy file name to clipboardExpand all lines: dist/extensions/contextmenu/jspanel.contextmenu.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
/**
2
2
* jsPanel - A JavaScript library to create highly configurable multifunctional floating panels that can also be used as modal, tooltip, hint or contextmenu
Copy file name to clipboardExpand all lines: dist/extensions/datepicker/jspanel.datepicker.js
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
/**
2
2
* jsPanel - A JavaScript library to create highly configurable multifunctional floating panels that can also be used as modal, tooltip, hint or contextmenu
3
-
* @version v4.10.1
3
+
* @version v4.11.0
4
4
* @homepage https://jspanel.de/
5
5
* @license MIT
6
6
* @author Stefan Sträßer - info@jspanel.de
@@ -23,13 +23,13 @@ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len
23
23
// - load list of days to highlight somehow (e.g. holidays)
0 commit comments