It's confusing to have the authority context menu - particularly the
"Create authority" options - appear for empty content. Check to ensure
that the subfield being clicked on actually has some content before
displaying the authority context menu.
git-svn-id: svn://svn.open-ils.org/ILS/trunk@19398
dcc99617-32d9-48b4-a31d-
7c20da2025e4
return false;
}
- browseAuthority( sf_popup, menu_id, target, sf, 20, page);
+ if (sf.toString()) {
+ browseAuthority(sf_popup, menu_id, target, sf, 20, page);
+ }
return true;
}