I am using Angular v1.4.2, and keep getting "Error: [ng:areq] Argument 'accountRegisterCtrl' is not a function, got undefined" below is my controller defination
(function(app) {
'use strict';
function accountRegisterCtrl($scope, $window) {
//........
$scope.previous = function () {
$window.history.back();
}
}
app.controller('accountRegisterCtrl', ['$scope', '$window', accountRegisterCtrl]);
}(angular.module('accountRegister')));
can any body be of help!