// Workaround for .NET breaking on `clientID.startsWith`

// Name:        MicrosoftAjaxWebForms.debug.js
// Assembly:    System.Web.Extensions

// Line: 722
// Error: Object doesn't support this property or method

/*
function Sys$WebForms$PageRequestManager$_matchesParentIDInList
(clientID, parentIDList) {
   for (var i = 0, l = parentIDList.length; i < l; i++) {
       if (clientID.startsWith(parentIDList[i] + "_")) {
           return true;
       }
   }
   return false;
}
*/

// Workaround
Function.prototype.startsWith = function(){ return false; };

