I have a scenario.
File A.vxml
<script src=.".. /test.js">
var abc={};
test.js // No declaration of abc in this js file.
abc['hello']=["Hello"];
If I compile A.vxml, it is not able to refer to the abc variable from the js file.
I do not want to declare the abc variable in the JS file.
Is there any way I can get this thing working?
File A.vxml
<script src=.".. /test.js">
var abc={};
test.js // No declaration of abc in this js file.
abc['hello']=["Hello"];
If I compile A.vxml, it is not able to refer to the abc variable from the js file.
I do not want to declare the abc variable in the JS file.
Is there any way I can get this thing working?
Comment