I need to watch changes on the URL bar and do certain actions based on that. I wondered what's the best way to add a watch to view changes to it?
thanks much for any thought, Lior
|
I need to watch changes on the URL bar and do certain actions based on that. I wondered what's the best way to add a watch to view changes to it? thanks much for any thought, Lior |
|||
|
|
|
Events exist, they're just undocumented for some reason. Try the following events:
Or you can $watch any value you want by passing a function into the $watch's first argument as Anders suggested:
However this will create a little more overhead on your $digest. |
|||||||
|
|
Assuming that you have requested the $location object in your controller, you can do it like this:
|
|||
|
|