I am trying to understand more the structure of javascript functions in SharePoint. Why does every function begin with som value than colon and semicolon like ULSrE8:; in spgridview.debug.js:
function ULSrE8(){
var o=new Object;
o.ULSTeamName="Microsoft SharePoint Foundation";
o.ULSFileName="spgridview.debug.js";
return o;
}
var SPGridView_CallbackContext=null;
function SPGridView_FilterPreMenuOpen(gridViewClientId,
templateClientId,
menuClientId,
dataFieldName, e)
{ULSrE8:;
var gridView=document.getElementById(gridViewClientId);
...
What does {ULSrE8:; do?
:;
does in JavaScript... – James Love Oct 13 '11 at 10:57