How do I tell the compiler to not put everything i...
# javascript
k
How do I tell the compiler to not put everything in a module object? Right now every button event handler had to have
onClick="main.action(event)"
, I'd like to do it without the
main
. Is that possible?
k
No, it's impossible.
k
Okay, thanks anyway.