So I was going through init.js and sp.js and found out that nearly all of the SharePoint OOB JS functions start with the following line: "ULSxSy:;"
For example:
function ctxInitItemState(ctxCur)
{ULSxSy:;
ctxCur.TotalListItems=0;
ctxCur.CurrentSelectedItems=0;
ctxCur.LastSelectableRowIdx=0;
ctxCur.StateInitDone=true;
}
function STSPageUrlValidation(url)
{ULSxSy:;
return PageUrlValidation(url);
}
I could not find any documentation regarding why this might be. Anybody have an idea?
