I'm wondering if is there a naming convention to namespacing events with AngularJS?
jQuery defines its convention as event.namespace (with namespace at the end, and dot separator)
I've seen some articles (example) where events are named like this: namespace::event (with namespace at the start; and double-colon separator)
Is there a common practice on this subject?
Thanks for your thoughts about it.
event.namespacenotation a bit odd (I think the namespace should be written before the event it contains) and thus prefer usingnamespace:eventornamespace::eventfor my Angular events though, I find it much clearer. But never saw any best practices about this, as long as you adopt one and only one convention accross your whole project.