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

git-svn-id: http://svn.automattic.com/wordpress/trunk@6975 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-02-22 06:12:10 +00:00
parent c5d19aed9c
commit 15f41f8d2b
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;
});
});