Advertisement
Guest User

Untitled

a guest
Oct 13th, 2015
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     this.saveProductName = function() {
  2.         var productName = {
  3.             name: $scope.productName
  4.         };
  5.         ProductName.saveProductName(productName, function(response) {
  6.             if(response.status === 'success') {
  7.                 $scope.vendorProductData.product_name_id = response.resource.id;
  8.             } else {
  9.                 $scope.message = response.message;
  10.             }
  11.         });
  12.     };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement