Skip to content

Commit

Permalink
added contact for 'all offers by skill
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishdommety committed Aug 24, 2017
1 parent e8bcb9f commit 2fb9825
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion assets/js/match_display.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ $(document).ready(function() {
$("#main_results").empty();
// NOTE: this is a dummy email for now, but we need to fetch it from
//the back end later
var email = "studentskillswap@gmail.com";
// var email = "studentskillswap@gmail.com";
// console.log(data);
// console.log("All Skills Joined w Offers", data);
//create a button for each skill
Expand All @@ -119,6 +119,7 @@ $(document).ready(function() {
var $skills;

for (var j = 0; j < data[i].length; j++) {
var email = data[i][j].User.email;
// console.log(data[i]);
if (isNotCurrentUser(data[i][j].User.id, localStorage.userid)) {
if (!addedDiv) {
Expand Down

0 comments on commit 2fb9825

Please sign in to comment.