Browse Source

Fixing friendship values with javascript

logicp 7 years ago
parent
commit
49fbed5528
1 changed files with 3 additions and 1 deletions
  1. 3 1
      js/heartbeat.js

+ 3 - 1
js/heartbeat.js

@@ -7,8 +7,10 @@
 
           if (drupalSettings.friendData != null) {
             var divs = document.querySelectorAll('.flag-friendship a.use-ajax');
+            // console.log(divs);
             divs.forEach(function (anchor) {
-              var userId = anchor.href.substring(anchor.href.indexOf('user') + 5, anchor.href.indexOf('&token'));
+              var userId = anchor.href.substring(anchor.href.indexOf('friendship') + 11, anchor.href.indexOf('?destination'));
+              console.log(userId);
               JSON.parse(drupalSettings.friendData).forEach(function (friendship) {
                 if (friendship.uid_target === userId && friendship.uid == drupalSettings.user.uid && friendship.status == 0) {
                   anchor.innerHTML = 'Friendship Pending';