(ANGULAR-JS)
I am working with a function called locationChange(x, y) that has two arguments and is located in core/services.
var locationChange = function(x, y) {
return new Promise(function(resolve, reject) {
---
Now, I need to utilize this function in app/js/services/controllers but I am unsure how to do so.
angularApp.controller('EditLocationController,function(...'
What steps should I take to link it?