SHARE
TWEET

Untitled

a guest Dec 17th, 2014 3 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. app.controller("IdeasCtrl", function($scope, $http) {
  2.  $http.get('ideas/find').
  3.     success(function(data, status, headers, config){
  4.      var url = data.url;
  5.      console.log(url);
  6.      $http.get('https://graph.facebook.com/?id='+url).success(function(data, status, headers, confid){
  7.       $scope.urlcount = data;
  8.      });
  9.     $scope.ideas = data;
  10.     });
  11. });
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top