I would like to NOT bind javascript local value to $scope function automatically, but angular did.
javascript code
var startat = true;
$scope.chagneStart = function() { startat = !startat}
$scope.isStart = function() { return angular.copy( startat); }
html code
<checkbox ng-click="chagneStartAt()">
<tr ng-show="isStartAt()"> ... </tr>
When I cliked checkbox, tr tag would be show or not depend on start value. I want to NOT change tr tag until call some other function, like applyOption().