Return false from edit timestamp click handler. Props fitztrev. fixes #5954

git-svn-id: https://develop.svn.wordpress.org/trunk@6975 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-02-22 06:12:10 +00:00
parent 579698f0b1
commit d3610be6ed
3 changed files with 5 additions and 6 deletions

View File

@ -8,7 +8,6 @@ addLoadEvent( function() {
} else {
jQuery('#timestampdiv').hide();
}
return false;
});
});
});

View File

@ -12,7 +12,6 @@ addLoadEvent( function() {
} else {
jQuery('#timestampdiv').hide();
}
return false;
});
});
});

View File

@ -151,5 +151,6 @@ addLoadEvent( function() {
} else {
jQuery('#timestampdiv').hide();
}
return false;
});
});