Skip to content

Commit

Permalink
handle lookup was busted
Browse files Browse the repository at this point in the history
  • Loading branch information
owocki committed Nov 2, 2018
1 parent 4d1cbb2 commit 7869f0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/dashboard/templates/profiles/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -374,13 +374,13 @@
(function($) {
$(document).on('click','.load-more' ,function() {
var address = $('#preferred-address').prop('title')
if (!address) {
return
}
var link = $(this);
var page = link.data('page');
var request = link.data('request')
var handle = link.data('handle')
if (!handle) {
return
}
$.ajax({
type: 'POST',
url: '/lazy_load_kudos/',
Expand Down

0 comments on commit 7869f0e

Please sign in to comment.