Skip to content

Instantly share code, notes, and snippets.

@cladera
Created February 16, 2015 12:21
Show Gist options
  • Save cladera/ebbf5b2f6aada54d4f20 to your computer and use it in GitHub Desktop.
Save cladera/ebbf5b2f6aada54d4f20 to your computer and use it in GitHub Desktop.
Google Analytics Experiments in AngularJS - listcontroller.js
'use strict';
angular.module('myStoreApp')
.controller('ListController', ['$scope', '$http', function($scope, $http){
$http.get('api.mystore.com/products/')
.success(function(products){
$socpe.products = products;
});
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment