use var instead of const to make global object available on window object

This commit is contained in:
Daniel Waxweiler 2022-06-09 18:35:35 +02:00
parent aed6d25115
commit 4372ffc66c
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ final class Mobilizon_Connector {
'timeZone' => wp_timezone_string(),
'url' => MobilizonConnector\Settings::getUrl()
);
wp_add_inline_script($scriptName, 'const MOBILIZON_CONNECTOR = ' . json_encode($settings), 'before');
wp_add_inline_script($scriptName, 'var MOBILIZON_CONNECTOR = ' . json_encode($settings), 'before');
}
public function register_blocks() {