You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
I'm running into this issue that if I set a custom Object.prototype method, it stops form validation from updating:
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Test</title>
</head>
<body ng-app>
<form name="testForm" novalidate>
<!-- type in here and field and form should turn valid -->
<input type="text" name="test" ng-model="test" required> Field Valid? {{testForm.test.$valid | json}}
</form>
Form valid? {{testForm.$valid | json}}
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script>
<script>
// remove this line and validation works again
Object.prototype.someThing = function() {}
</script>
</body>
</html>
The text was updated successfully, but these errors were encountered:
Here is a plunk http://plnkr.co/edit/XauBqEKawyDyk21RFc1r?p=preview demonstrating the behaviour (the prototype method is set in script.js). The issue seems to have started in version 1.3.0-rc.1 so that is what I have used in the plunk.
lgalfaso
added a commit
to lgalfaso/angular.js
that referenced
this issue
Jun 10, 2015
The check that there are no errors in the errors object was not checking that any of the properties comes from the Object.prototype. #12075 should take care of this
I'm running into this issue that if I set a custom Object.prototype method, it stops form validation from updating:
The text was updated successfully, but these errors were encountered: