mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 14:17:57 +01:00
Fix event error on firefox 1.6.
This commit is contained in:
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
Block a user