Fix event error on firefox 1.6.
parent
dd1698b5d9
commit
9f495f1e76
|
@ -239,13 +239,11 @@ $("#addBtn").click(function (event) {
|
|||
});
|
||||
|
||||
// Register change event ...
|
||||
$("#shareRole a").click(function () {
|
||||
$("#shareRole a").click(function (event) {
|
||||
var role = onClickShare(this);
|
||||
$(this).parent().attr('data-role', role);
|
||||
|
||||
event.stopPropagation();
|
||||
event.preventDefault();
|
||||
return false;
|
||||
});
|
||||
|
||||
function isValidEmailAddress(emailAddress) {
|
||||
|
|
Loading…
Reference in New Issue