Skip to content

Instantly share code, notes, and snippets.

@dan1d
Created August 13, 2013 19:24
Show Gist options
  • Save dan1d/6224742 to your computer and use it in GitHub Desktop.
Save dan1d/6224742 to your computer and use it in GitHub Desktop.
Differences
// File restaurant_users.js en Staging
$scope.edit = function(user){
$scope.user = $scope.data.users[$scope.data.users.indexOf(user)];
$scope.panelTitle = 'Edit User';
$scope.showPanel();
editFlag = true;
};
// commit https://bitbucket.org/setforservice/sfs-front-end/commits/53143b3de4453c74691a0828768c615de584689a
$scope.edit = function(user){
$scope.newMember = $scope.users[$scope.users.indexOf(user)];
$scope.panelTitle = 'Edit User';
$scope.showPanel();
editFlag = true;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment