-
-
Save andershaig/9297079 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- This would go within the {% if sweeps_settings.completed %} section --> | |
<div id="ref-id" data-id="{{ sweeps_settings.referral_id }}"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).on('didRefreshWidgetContent', function () { | |
var referral_id = $('#ref-id').data('id'); | |
// referral url is canvas_url + reverral_id | |
the_referral_url = ''; | |
the_referral_url = "{{ canvas_url }}" + "?app_" + referral_id; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment