what is that
source = Regex.Replace(source, @
"\$\(document\)\.on\("
"kendoReady"
","
,
"$(document).ready("
, RegexOptions.Multiline);
in the ASP.NET Core Examples code?
Should I understand that all the document.on('kendoReady' in fact should not be used, and instead "document.Ready" should be used ?
How a developer that usually copies only parts of examples should guess that hack?