fix no value being rendered for 'isDev' var in non-dev builds
This commit is contained in:
parent
bbd0749d13
commit
43ec433f31
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var context = '{{ path('/') }}';
|
var context = '{{ path('/') }}';
|
||||||
var isDev = {{ isDev }};
|
var isDev = {{ isDev|default('false') }};
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
Reference in a new issue