Odd function behavior?
In my project I have several views, with buttons that are meant to execute different functions. For example, on my main view I have buttons that validate if a user has entered the right password, or take the user to a different view. However, it seems like functions are only sometimes called by button "clicks". For example, in order to get the sign in button to run the function that checks passwords I needed to use $scope.[functionname] = function(), but for another function it wouldn't run unless I added $scope.app.[functionname] = function(), and others will only run if they are defined as a nonanonymous function.
Now, I'm having trouble getting a function to run from a click, I've added logs throughout my code so I can see the logic progression. I have a function defined as:
$scope.addPart = function(partname)
and the call is simply:
addPart("PartName"), however no matter what I try the function never runs. Does anyone have any experience with odd function behaviors or specific steps you have to add to get them to run?
As a side note: I can only get twx.app.fn.navigate(view) to run sometimes, often it'll send the debug log to the console but will simply skip/not execute (at least in any way that I can detect)
Looking forward to hearing any help/ideas!

