summaryrefslogtreecommitdiff
path: root/views/favorite-popup.php
blob: fecc7805c5ae7865c5410aae4a7142bdbd9194fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<html lang="en">
  <head>
    <title>Favoriting</title>
  </head>
  <body>
    <script>
    function favorite_finished() {
      self.close();
    }
    </script>
    <script src="/favorite.js?url=<?= urlencode($this->url) ?>&amp;token=<?= $this->token ?>"></script>

    <?php /*
    <script>
    window.quillFbInit = function() {
      FB.getLoginStatus(function(response) {

        if (response.status === 'connected') {
          // the user is logged in and has authenticated your
          // app, and response.authResponse supplies
          // the user's ID, a valid access token, a signed
          // request, and the time the access token 
          // and signed request each expire
          var uid = response.authResponse.userID;
          var accessToken = response.authResponse.accessToken;
          console.log(accessToken);

          FB.api("/<?= $this->facebook_id ?>/likes", "post", function(response){
            console.log(response);
            show_star();
          });

        } else if (response.status === 'not_authorized') {
          // the user is logged in to Facebook, 
          // but has not authenticated your app
          console.log("Logged in but not authorized");
        } else {
          // the user isn't logged in to Facebook.
          console.log("User isn't logged in");
        }
      });
    };
    </script>
    <?= partial('partials/fb-script') ?>
    */ ?>


  </body>
</html>