mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix for incorrect event handler definition
Clicks events should be better defined by jquery calls (usually addEventListener) not as elements attributes. Definition as element attribute causes problems after upgrade to jquery 1.7.2. Two occurances were removed. https://fedorahosted.org/freeipa/ticket/2817
This commit is contained in:
@@ -3212,7 +3212,7 @@ IPA.sshkey_widget = function(spec) {
|
||||
href: '#show-certificate',
|
||||
title: that.tooltip,
|
||||
text: IPA.messages.objects.sshkeystore.show_set_key,
|
||||
onclick: function() {
|
||||
click: function() {
|
||||
that.open_edit_dialog();
|
||||
return false;
|
||||
}
|
||||
@@ -3430,7 +3430,7 @@ IPA.action_panel = function(spec) {
|
||||
href: '#',
|
||||
text: action.label,
|
||||
'class': classes.join(' '),
|
||||
onclick: function() {
|
||||
click: function() {
|
||||
that.action_clicked(action);
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user