Pregunta

To un-subscribed from $broadcast in $on, one can do

var cleanUp = $rootScope.$on('myBroadcast', function(){ ... });
cleanUp();

Is there a way to re-subscribe once you have called cleanUp()?

¿Fue útil?

Solución

function foo () {
  return $rootScope.$on('myBroadcast', function(){ ... });
}
var cleanup = foo(); // listen

// somewhere down the road
cleanup(); // unlisten

// somewhere down the road
foo(); // listen again
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top