Sebastien

Results 7 comments of Sebastien

@timostamm I'm trying to implement your solution, but i get the following error: **Controller 'dndNodragMouseover', required by directive 'dndNodragMouseover', can't be found!** `` Any idea?

@timostamm I had to rewrite the directive a little bit, because I use john papa's [approach](https://github.com/johnpapa/angular-styleguide/blob/master/a1/README.md): (btw using angularjs 1.6.5) Maybe you see the reason why it fails? ``` (function...

@timostamm My bad, i did a typo `cntroller: controller`, I misspelled "controller", forgot the 'o'... :fearful: ! Now it seems to work, but double clicking in the input to select...

You can use an IntentService for that: http://developer.android.com/training/run-background-service/create-service.html

You can use [LocalBroadcastManager](http://developer.android.com/reference/android/support/v4/content/LocalBroadcastManager.html) for that. For example in your IntentService you can `sendBroadcast()` with an intent containing the data you need to update the UI: ``` Intent localProgressIntent =...

Ok yes, that could be a possible workaround thanks. But what if i want to stop the current process (for example in the onDestroy() method)?