We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d19104c commit 6dc7996Copy full SHA for 6dc7996
3 files changed
plugins/gh-datainmap/CHANGELOG.md
@@ -1,3 +1,5 @@
1
+- Fix voor jQuery deprecation van `ready()` in de backend.
2
+
3
**1.10.0 (2021-08-25)**
4
5
- Nieuwe versies van ondersteunende software bibliotheken in gebruik genomen.
src/admin-layers.js
@@ -13,7 +13,7 @@
13
*/
14
import jQuery from 'jquery';
15
const $ = jQuery;
16
-$(document).ready(function() {
+$(function() {
17
const layerType = $('#gh_dim_layer_type');
18
if(!layerType) {
19
return;
src/admin-location.js
@@ -79,7 +79,7 @@ $(document).ready(function() {
79
});
80
81
// Location Content Type (Post, Redirect etc.)
82
83
const allFields = [
84
'#gh_dim_location_redirect_url'
85
];
0 commit comments