Trying to setup some helpers value to the module. Tried with service and value and it didn\'t help:
var finance = angular.module(\'finance\', [\'finance.serv
Your helper method is called templatePath and you are calling it inside .config as getTemplatePath. Shouldn't it be:
templatePath
.config
getTemplatePath
when('/', { templateUrl: helpers.templatePath('dashboard'), controller: DashboardController })