Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Variable formatting in inline JavaScript #477

Open
ihidzhov opened this issue Jun 21, 2023 · 0 comments
Open

Variable formatting in inline JavaScript #477

ihidzhov opened this issue Jun 21, 2023 · 0 comments

Comments

@ihidzhov
Copy link

ihidzhov commented Jun 21, 2023

Describe the bug
Variable in inline (in template file) JavaScript doesn't work when format selection.

To Reproduce
Code befor formatting:

<script>
	var status = {$status};
</script>  

Code after formating - there is a space between $var and {}:

<script>
	var status = { $status };
</script>

Expected behavior
Not to have space between {} and $var
The result after Smarty compile is not printet $status variable but something like this, because of spaces:

<script>
	var status = { $status };
</script>

The final result after formating to work Smarty properly is:

<script>
	var status = {$status};
</script>

Context :

  • Version 2.1.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant