The code that was provided at the last Empower Conference works great, however, some of our customers don't like that the Entry Properties display for a brief second before becoming hidden. Is there a way to hide them completely? Here is what we have currently:
$(document).ready(function () {
var i = 1;
function removeEntryPropertyLoop() {
setTimeout(function () {
if ($('.mTitle[lflocalize=STR_MODIFIED]').length > 0) {
$('.mTitle[lflocalize=STR_MODIFIED]').parent().parent().remove();
$('.mTitle[lflocalize=STR_CREATED]').parent().parent().remove();
$('.mTitle[lflocalize=STR_PATH]').parent().parent().remove();
return; // exit loop
}
i++;
if (i < 20) {
removeEntryPropertyLoop();
}
}, 500);
}
removeEntryPropertyLoop();
});