WIP: Bulk Product Update Rewrite: initial acceptance testing

This commit is contained in:
Rob H
2013-03-31 23:14:53 +11:00
committed by Rohan Mitchell
parent bcac56df0e
commit 731127d55c
8 changed files with 146 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
function AdminProductsBulkCtrl($scope, $http) {
$scope.refreshData = function(){
$http({ method: 'GET', url:'/admin/products/bulk_index.json' }).success(function(data) {
$scope.products = data;
});
}
$scope.refreshData();
}
var productsApp = angular.module('bulk_product_update', [])