Hey guys, so i have this angular script to pull in a json file I'm storing in Dropbox. my current issue is that I get an Access-Control-Allow-Origin error every time. I'm not really sure how to fix it...
<script type="text/javascript">
var app = angular.module("mig-usedgear", [])
app.controller("myCtrl", function($scope, $http) {
$http.get("http://www.dropbox.com/s/8g7fump2tnbohv2/items.json?raw=1")
.then(function(response) {
$scope.friends = response.data;
});
});
</script>