asadiqbal08/SOL-1046: Convert LinkedIn anchor tag to button

* remove the onclick event
* add mako check to Javascript handler
This commit is contained in:
asadiqbal
2015-07-14 13:14:00 +05:00
committed by Matt Drayer
parent 66e1b11a58
commit 56015fecf3
2 changed files with 6 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ class CertificatePage(PageObject):
"""
returns add to LinkedIn profile button
"""
return self.q(css='a.action-linkedin-profile')
return self.q(css='button.action-linkedin-profile')
@property
def add_to_facebook_profile_button(self):

View File

@@ -30,6 +30,9 @@ from django.core.urlresolvers import reverse
social_network: 'LinkedIn'
};
Logger.log('edx.certificate.shared', data);
% if linked_in_url:
window.open('${linked_in_url}');
% endif
});
});
@@ -85,10 +88,10 @@ from django.core.urlresolvers import reverse
%endif
%if linked_in_url:
<a class="action action-linkedin-profile btn btn-overlay btn-small icon-only" id="action-share-linkedin" target="_blank" href="${linked_in_url}" title="${_('Add to LinkedIn Profile')}" data-course-id="${course_id}" data-certificate-mode="${course_mode}">
<button class="action action-linkedin-profile btn btn-overlay btn-small icon-only" id="action-share-linkedin" title="${_('Add to LinkedIn Profile')}" data-course-id="${course_id}" data-certificate-mode="${course_mode}">
<i class="icon fa fa-linkedin" aria-hidden="true"></i>
<span class="action-label">${_("Add to LinkedIn Profile")}</span>
</a>
</button>
%endif
%if badge: