21 lines
423 B
HTML
21 lines
423 B
HTML
|
<script>
|
||
|
function __templ_withoutParameters_6bbf(){alert("hello");
|
||
|
}
|
||
|
</script>
|
||
|
<script>
|
||
|
__templ_withoutParameters_6bbf()
|
||
|
</script>
|
||
|
<script>
|
||
|
function __templ_withParameters_1056(a, b, c){console.log(a, b, c);
|
||
|
}
|
||
|
</script>
|
||
|
<script>
|
||
|
__templ_withParameters_1056("injected","test",123)
|
||
|
</script>
|
||
|
<script>
|
||
|
__templ_withoutParameters_6bbf()
|
||
|
</script>
|
||
|
<script>
|
||
|
__templ_withParameters_1056("injected","test",123)
|
||
|
</script>
|